0
我試圖寫了一個接口類,其中還包含其他類,但是當我這樣做,但不知道什麼是錯的我收到一個錯誤接口類:與嵌套類的打字稿
接口:
export interface Languages{
static English = class{
id: number,
section:number,
name: string
},
static Chinese = class{
id: number,
section: number,
name: string
}
}
兩個static
和English
都出現錯誤,指出:[ts] Property or signature expected. [ts] Cannot find name 'English'.
接口中沒有'static'。一個接口描述實例的外觀。如果你想描述靜態成員/方法,你需要創建一個不同的接口來表示它,就像你使用[Array](https://github.com/Microsoft/TypeScript/blob/master/lib/lib.d。例如ts#L1111)和[ArrayConstructor](https://github.com/Microsoft/TypeScript/blob/master/lib/lib.d.ts#L1294) –