UNPKG

ts-patch

Version:

Patch typescript to support custom transformers in tsconfig.json

10 lines (9 loc) 253 B
import { TsModule } from '../module'; export interface PatchModuleOptions { skipDts?: boolean; libraryName?: string; } export declare function patchModule(tsModule: TsModule, options?: PatchModuleOptions): { js: string; dts?: string; };