@ainc/script
Version:
Script compiler for typescript
23 lines • 615 B
TypeScript
/**
*****************************************
* 加载依赖
*****************************************
*/
import * as ts from 'typescript';
/**
*****************************************
* 声明节点源属性
*****************************************
*/
declare module 'typescript' {
interface Node {
original?: ts.Node;
}
}
/**
*****************************************
* 转换器
*****************************************
*/
export declare function transformer(context: ts.TransformationContext): ts.Transformer<ts.SourceFile>;
//# sourceMappingURL=module-export-transformer.d.ts.map