vusion-api
Version:
Vusion Node.js API
11 lines (10 loc) • 366 B
TypeScript
import FSEntry from './FSEntry';
export default class Directory extends FSEntry {
children: Array<FSEntry>;
constructor(fullPath: string);
forceOpen(): Promise<void>;
close(): void;
protected load(): Promise<FSEntry[]>;
find(relativePath: string, openIfNotLoaded?: boolean): Promise<FSEntry>;
static fetch(fullPath: string): Directory;
}