TypeScript 类型type的使用

  1. type 的基本使用
type Person = {
  isNormal: boolean;
  color: string;
};
  1. 多个type的使用
type Person = {
  isNormal: boolean;
  color: string;
};

type Car = {
  type: string;
  wheel: number;
};

type Drive = Person & Car;
  1. 使用type中的单个属性
type DriveTank = Person & { [K in 'wheel']: Car[K] };

你可能感兴趣的:(TypeScript 类型type的使用)