UNPKG

316 BTypeScriptView Raw
1export declare type OutputMockFile = {
2 path: string;
3 rootName: string;
4};
5export default class CompilerOutRootFiles {
6 files: OutputMockFile[];
7 /** Returns true if list of rootNames is changed */
8 update(rootNames: readonly string[] | undefined, inDir: string, outDir: string): boolean;
9}