typescript 对象类型声明 if
时间: 2023-05-11 18:07:21 浏览: 264
您好,typescript 中的对象类型声明可以使用 interface 或 type 关键字来定义。例如:
interface Person {
name: string;
age: number;
}
type Animal = {
species: string;
habitat: string;
}
这样就定义了一个 Person 接口和一个 Animal 类型。在使用时,可以像这样声明变量:
const person: Person = { name: 'Alice', age: 30 };
const animal: Animal = { species: 'Tiger', habitat: 'Jungle' };
希望这个回答能够帮到您。
阅读全文