UNPKG

402 BTypeScriptView Raw
1export interface PathService {
2 getcwd(): string;
3 loadFile<T>(path: string): T;
4 isFile(path: string): boolean;
5 ensureAbsolutePath(path: string): string;
6 glob(pattern: string): string[];
7}
8export interface ModuleRequireService {
9 resolve(request: string, options?: {
10 paths?: string[];
11 }): string;
12 require<T>(module: string): T;
13}
14//# sourceMappingURL=types.d.ts.map
\No newline at end of file