在Typescript中,可以使用export
关键字导出模块,使用import
关键字导入模块。以下是一些常用的模块导入导出示例:
// module.ts
export const myVariable: string = "Hello";
export function myFunction(): void {
console.log("Function called");
}
// 使用模块
import { myVariable, myFunction } from './module';
console.log(myVariable); // 输出: Hello
myFunction(); // 输出: Function called
// module.ts
export class MyClass {
constructor() {
console.log("Class constructor called");
}
}
// 使用模块
import { MyClass } from './module';
const myClass = new MyClass(); // 输出: Class constructor called
// module.ts
export default function myDefaultFunction(): void {
console.log("Default function called");
}
// 使用模块
import myDefaultFunction from './module';
myDefaultFunction(); // 输出: Default function called
需要注意的是,如果使用export default
导出模块,则在导入时不需要使用花括号,直接使用import moduleName from './module'
即可。