Last change
on this file since 1ad8e64 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
517 bytes
|
Line | |
---|
1 | import { FileSystem } from './FileSystem';
|
---|
2 | declare class WebpackFileSystem implements FileSystem {
|
---|
3 | private fs;
|
---|
4 | pathSeparator: string;
|
---|
5 | constructor(fs: any);
|
---|
6 | isFileInDirectory(filename: string, directory: string): boolean;
|
---|
7 | pathExists(filename: string): boolean;
|
---|
8 | readFileAsUtf8(filename: string): string;
|
---|
9 | join(...paths: string[]): string;
|
---|
10 | resolvePath(pathInput: string): string;
|
---|
11 | listPaths(dir: string): string[];
|
---|
12 | isDirectory(dir: string): boolean;
|
---|
13 | }
|
---|
14 | export { WebpackFileSystem };
|
---|
Note:
See
TracBrowser
for help on using the repository browser.