mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-02 16:19:30 +08:00
13 lines
No EOL
829 B
Text
13 lines
No EOL
829 B
Text
import * as ts from 'typescript';
|
|
interface DirectoryStructureHost {
|
|
readDirectory?(path: string, extensions?: ReadonlyArray<string>, exclude?: ReadonlyArray<string>, include?: ReadonlyArray<string>, depth?: number): string[];
|
|
}
|
|
interface CachedDirectoryStructureHost extends DirectoryStructureHost {
|
|
readDirectory(path: string, extensions?: ReadonlyArray<string>, exclude?: ReadonlyArray<string>, include?: ReadonlyArray<string>, depth?: number): string[];
|
|
}
|
|
interface WatchCompilerHostOfConfigFile<T extends ts.BuilderProgram> extends ts.WatchCompilerHostOfConfigFile<T> {
|
|
onCachedDirectoryStructureHostCreate(host: CachedDirectoryStructureHost): void;
|
|
extraFileExtensions?: readonly ts.FileExtensionInfo[];
|
|
}
|
|
export { WatchCompilerHostOfConfigFile };
|
|
//# sourceMappingURL=WatchCompilerHostOfConfigFile.d.ts.map |