UNPKG

@varasto/fs-storage

Version:

Varasto storage implementation that stores data to hard disk

7 lines (6 loc) 263 B
import { Storage } from '@varasto/storage'; import { FileSystemStorageOptions } from './types'; /** * Creates new file system storage with given options. */ export declare const createFileSystemStorage: (options?: Partial<FileSystemStorageOptions>) => Storage;