摘要: // tsconfig.json outDir: "./build"; // 打包编译后的文件放置位置 安装: npm install nodemon -D 配置: //package.json "scripts": { build: "tsc -w"; // w: 改变代码时自动编译代码: sta 阅读全文
posted @ 2022-05-07 13:01 sinceForever 阅读(86) 评论(0) 推荐(0) 编辑
摘要: interface Bird { fly: boolean; sing: () => {}; } interface Dog { fly: boolean; bark: () => {}; } // 类型断言的方式 function trainAnimal(animal: Bird | Dog){ 阅读全文
posted @ 2022-05-07 12:55 sinceForever 阅读(90) 评论(0) 推荐(0) 编辑