elearning/Frontend-Learner/node_modules/unstorage/drivers/fs.d.cts

11 lines
359 B
TypeScript
Raw Normal View History

2026-01-13 10:46:40 +07:00
import { type ChokidarOptions } from "chokidar";
export interface FSStorageOptions {
base?: string;
ignore?: string[];
readOnly?: boolean;
noClear?: boolean;
watchOptions?: ChokidarOptions;
}
declare const _default: (opts: FSStorageOptions | undefined) => import("..").Driver<FSStorageOptions | undefined, never>;
export default _default;