UNPKG

362 BTypeScriptView Raw
1import { Logger } from '../system';
2import { TsModule } from '../module';
3export interface GetPatchedSourceOptions {
4 log?: Logger;
5 skipCache?: boolean;
6 skipDts?: boolean;
7}
8export declare function getPatchedSource(tsModule: TsModule, options?: GetPatchedSourceOptions): {
9 js: string;
10 dts: string | undefined;
11 loadedFromCache: boolean;
12};