接口

@Interface
更多信息,请访问 TypeScript
Overview
接口
用于定义对象的结构,包括对象的属性和方法;而不用实现这些属性和方法
是对对象属性和方法的描述,即状态和行为的 抽象
是一种类型、一种约束、一种规范 - 慢慢体会
使用 interface 关键字定义
readonly 为只读属性
? 为可选属性
syntax
interface InterfaceName {
  propertyName: propertyType;
  methodName(): returnType;
}
demo
interface Person {
  readonly id: number;
  firstName: string;
  lastName: string;
  age?: number;
  greet(): void;
}
const 修饰变量
extends
接口和接口的关系,可以用继承来描述
接口可以继承其他接口来扩展接口的功能,从而创建更复杂和灵活的类型定义
可以继承一个或多个接口;多个接口使用 逗号, 分隔
接口继承使用 extends 关键字来实现
syntax
interface ChildInterface extends ParentInterface {
  // 额外的属性和方法
}