1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 | import { Observable } from 'rxjs';
|
9 | import { Path, PathFragment } from '../path';
|
10 | import { FileBuffer, HostCapabilities, ReadonlyHost, Stats } from './interface';
|
11 | export declare class Empty implements ReadonlyHost {
|
12 | readonly capabilities: HostCapabilities;
|
13 | read(path: Path): Observable<FileBuffer>;
|
14 | list(path: Path): Observable<PathFragment[]>;
|
15 | exists(path: Path): Observable<boolean>;
|
16 | isDirectory(path: Path): Observable<boolean>;
|
17 | isFile(path: Path): Observable<boolean>;
|
18 | stat(path: Path): Observable<Stats<{}> | null>;
|
19 | }
|