UNPKG

463 BTypeScriptView Raw
1import * as fs from './adapters/fs';
2export interface Options {
3 followSymbolicLink?: boolean;
4 fs?: Partial<fs.FileSystemAdapter>;
5 markSymbolicLink?: boolean;
6 throwErrorOnBrokenSymbolicLink?: boolean;
7}
8export declare class Settings {
9 readonly followSymbolicLink: boolean;
10 readonly fs: fs.FileSystemAdapter;
11 readonly markSymbolicLink: boolean;
12 readonly throwErrorOnBrokenSymbolicLink: boolean;
13 constructor(options?: Options);
14}