tsbase
    Preparing search index...

    Interface IFileSystemAdapter

    An interface that defines FSPersister required methods on the node fs library

    interface IFileSystemAdapter {
        constants: { W_OK: any };
        accessSync(path: string, mode: number): void;
        existsSync(path: string): boolean;
        mkdirSync(path: string): void;
        readFileSync(path: string, options?: any): Buffer;
        writeFileSync(path: string, data: any): void;
    }
    Index

    Properties

    constants: { W_OK: any }

    Methods