随笔分类 - 框架--Typescript
Typescript的一些参数说明
摘要:无法找到模块“xxxx”的声明文件。 可以在tsconfig.json设置noImplicitAny:false 或者npm安装 @types/xxxx 在src-》shims.d.ts文件中,添加第三方插件声明即可。 // shims.d.ts declare module 'alife-logg
阅读全文
摘要:1、函数promise new <T>(executor: (resolve: (value?: T | PromiseLike<T>) => void, reject: (reason?: any) => void) => void): Promise<T>; const main = new P
阅读全文