UNPKG

unstorage

Version:

Universal Storage Layer

11 lines (10 loc) 335 B
import type { ChokidarOptions } from "chokidar"; export interface FSStorageOptions { base?: string; ignore?: string[]; readOnly?: boolean; noClear?: boolean; watchOptions?: ChokidarOptions; } declare const _default: (opts: FSStorageOptions) => import("..").Driver<FSStorageOptions, never>; export default _default;