/** ***************************************** * 加载依赖 ***************************************** */ import * as ts from 'typescript'; /** ***************************************** * 声明节点源属性 ***************************************** */ declare module 'typescript' { interface Node { original?: ts.Node; } } /** ***************************************** * 转换器 ***************************************** */ export declare function transformer(context: ts.TransformationContext): ts.Transformer; //# sourceMappingURL=module-export-transformer.d.ts.map