blob: c5d6d79c063bbb7b9bfd5946ac696dacecc1628b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
export declare class MapFS {
private mapping;
constructor(mapping: {
[key: string]: string;
});
sep: string;
exists(filepath: string): Promise<boolean>;
existsSync(filepath: string): boolean;
readFile(filepath: string): Promise<string>;
readFileSync(filepath: string): string;
dirname(filepath: string): string;
resolve(dir: string, file: string, ext: string): string;
}
|