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