UNPKG

259 BTypeScriptView Raw
1export declare type OutputMockFile = {
2 path: string;
3 rootName: string;
4};
5export declare class CompilerOutRootFiles {
6 files: OutputMockFile[];
7 update(rootNames: readonly string[] | undefined, inDir: string, outDir: string): boolean;
8}