UNPKG

347 BTypeScriptView Raw
1export interface PathService {
2 loadFile<T>(path: string): Promise<T>;
3 isFile(path: string): boolean;
4 ensureAbsolutePath(path: string, rootDir: string): string;
5 glob(pattern: string, rootDir: string): string[];
6}
7export interface ModuleImportService {
8 import<T>(module: string): Promise<T>;
9}
10//# sourceMappingURL=types.d.ts.map
\No newline at end of file