You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
379 B

4 years ago
  1. import { FileSystemAdapter } from '../adapters/fs';
  2. export interface Options {
  3. fs?: Partial<FileSystemAdapter>;
  4. throwErrorOnBrokenSymlinks?: boolean;
  5. followSymlinks?: boolean;
  6. }
  7. export declare type StrictOptions = {
  8. fs: FileSystemAdapter;
  9. } & Required<Options>;
  10. export declare function prepare(opts?: Options): StrictOptions;
  11. //# sourceMappingURL=options.d.ts.map