摘要:
// tsconfig.json outDir: "./build"; // 打包编译后的文件放置位置 安装: npm install nodemon -D 配置: //package.json "scripts": { build: "tsc -w"; // w: 改变代码时自动编译代码: sta 阅读全文
摘要:
interface Bird { fly: boolean; sing: () => {}; } interface Dog { fly: boolean; bark: () => {}; } // 类型断言的方式 function trainAnimal(animal: Bird | Dog){ 阅读全文