Login
Create new posts
emmm 非常有趣的净土
经过试验,实际上只需要 export TypeOf<T> = T 然后在前端代码中只使用 TypeOf<Question> 就好(如果模型是 Question)。 TS 真是太美妙了!
我最近在用一种似乎可行的方式,就是把文件从文件列表中拖动到 panel 上。
see this How to create two editor panes for the same file? ttps://stackoverflow.com/q/1846565/8590320
现在计划可能又变,可能还可以抢救一会儿……
Angular 版本的源码会在彻底用 React 重写完之后开放,作为血与泪的纪念,作为反面教材。此生不再碰 Angular。
fdasfasdfasdasfdsfasdfasdfsdfagfdsgsfdgsfdgsfdgsfdsfdsfdg
type A = { a: number b: string
pe B = { a: string c: string
pe C = { a: number c: string
pe NeverO = { [key: string]: never } pe In<A, B> = ({ [K in keyof A]: K } & NeverO)[keyof B] pe U<A, B> = { [K in In<A, B>]: (A & NeverO)[K] | (B & NeverO)[K]
pe D = U<A, B>
pe D = { a: number | string;
pe E = U<A, C>
pe E = { a: number;
/
不过倒是对我使用 conditional type 提了一个醒。
Create new posts