💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
>[success] # 类作为类型 ~~~ 1.类也可以声明一个类型和接口类型一样的效果 ~~~ ~~~ class A { name: string; constructor(name: string) { this.name = name; } } const a1: A = {}; // ts(2741) Property 'name' is missing in type '{}' but required in type 'A'. const a2: A = { name: 'a2' }; // ok ~~~