ooafs
Version:
Type-safe Object-Oriented Async FileSystem
8 lines (7 loc) • 308 B
TypeScript
import Entry from './Entry';
import EntryFilter from './EntryFilter';
import { Directory, File } from './FSTypings';
declare type Constructor<T> = new (path: string) => T;
declare const File: Constructor<File>;
declare const Directory: Constructor<Directory>;
export { Entry, File, Directory, EntryFilter };