要創建一個接口文件,你需要遵循以下步驟:
interface
定義一個接口,指定接口的名稱和屬性(方法和屬性)。例如:interface MyInterface {
method1: () => void;
method2: (param1: string, param2: number) => string;
property1: number;
property2: string;
}
export
關鍵字將接口導出,以便在其他文件中使用該接口。例如:export interface MyInterface {
// ...
}
創建接口文件:創建一個新的文件,并將接口定義放在該文件中。例如,創建一個名為 myInterface.ts
的文件,并將接口定義放在其中。
使用接口:在其他文件中使用該接口。可以使用 import
關鍵字導入接口,并在代碼中使用。例如:
import { MyInterface } from './myInterface';
const myObject: MyInterface = {
method1: () => {
// ...
},
method2: (param1, param2) => {
// ...
return 'result';
},
property1: 123,
property2: 'abc',
};
這樣,你就創建了一個接口文件,并在其他文件中使用了該接口。