文件名称:dts-bundle-generator:生成单捆DTS的工具
文件大小:147KB
文件格式:ZIP
更新时间:2024-05-19 20:18:38
definition typescript bundle typescript-definitions dts
DTS捆绑发电机 从您的ts代码生成dts捆绑包的小工具。 例如: // a.ts export class A { } // b.ts export class B { } // entry.ts import { A } from './a' ; import { B } from './b' ; declare function makeA ( ) : A ; export function makeB ( ) : B { makeA ( ) ; return new B ( ) ; } 当在my.d.ts运行dts-bundle-generator -o my.d.ts entry.ts ,您将获得以下信息: declare class B { } export declare function makeB ( ) : B ; 安装 从npm安装软件包