UNPKG

ts-patch

Version:

Patch typescript to support custom transformers in tsconfig.json

11 lines (10 loc) 392 B
import { TsModule } from './ts-module'; export interface GetLiveModuleOptions { libraryName?: string; } export declare function getLiveTypeScriptPath(): string; export declare function getLiveTypeScriptPackage(): import("../ts-package").TsPackage; export declare function getLiveModule(moduleName: TsModule.Name, opts?: GetLiveModuleOptions): { js: string; tsModule: TsModule; };