@file-services/utils
Version:
Common file system utility functions.
7 lines • 776 B
TypeScript
import type { IBaseFileSystemAsync, IBaseFileSystemSync, IFileSystemAsync, IFileSystemSync, IBaseFileSystem, IFileSystem, IFileSystemExtendedSyncActions, IFileSystemExtendedPromiseActions } from "@file-services/types";
export declare function createFileSystem(baseFs: IBaseFileSystem): IFileSystem;
export declare function createSyncFileSystem(baseFs: IBaseFileSystemSync): IFileSystemSync;
export declare function createExtendedSyncActions(baseFs: IBaseFileSystemSync): IFileSystemExtendedSyncActions;
export declare function createAsyncFileSystem(baseFs: IBaseFileSystemAsync): IFileSystemAsync;
export declare function createExtendedFileSystemPromiseActions(baseFs: IBaseFileSystemAsync): IFileSystemExtendedPromiseActions;
//# sourceMappingURL=create-extended-api.d.ts.map