原文分隔线while writing go this morning, I found that the wrong code are not under lined by red line This is really difficult for me and time consuming to keep writing. After 1 hour of wasting time trying to figure out what happened, I decide to kill it al…
有时候需要一个类型,是依赖于上一个类型但是,对属性的要求去不同interface Person{name: string;agent: number;
}
type Person2 Readonly<Person>;
type Person3 Partial<Person>;
class Test {run() {let person: Person {name: dd,age…