UNPKG

react-kiwi-dropdown

Version:

A minimal, easy-to-use and highly adjustable dropdown component made with ReactJS.

11 lines 379 B
import { FileSystemAdapter } from '../adapters/fs'; export interface Options { fs?: Partial<FileSystemAdapter>; throwErrorOnBrokenSymlinks?: boolean; followSymlinks?: boolean; } export declare type StrictOptions = { fs: FileSystemAdapter; } & Required<Options>; export declare function prepare(opts?: Options): StrictOptions; //# sourceMappingURL=options.d.ts.map