- type 的基本使用
type Person = {
isNormal: boolean;
color: string;
};
- 多个type的使用
type Person = {
isNormal: boolean;
color: string;
};
type Car = {
type: string;
wheel: number;
};
type Drive = Person & Car;
- 使用type中的单个属性
type DriveTank = Person & { [K in 'wheel']: Car[K] };
网友评论