1 | export 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 | }
|
7 | export interface ModuleImportService {
|
8 | import<T>(module: string): Promise<T>;
|
9 | }
|
10 | //# sourceMappingURL=types.d.ts.map |
\ | No newline at end of file |