summaryrefslogtreecommitdiffstats
path: root/node_modules/@nodelib/fs.stat/out/settings.d.ts
blob: 34c46206b289111db7a6efa10f5778aea40f6482 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import * as fs from './adapters/fs';
export declare type Options = {
    followSymbolicLink?: boolean;
    fs?: Partial<fs.FileSystemAdapter>;
    markSymbolicLink?: boolean;
    throwErrorOnBrokenSymbolicLink?: boolean;
};
export default class Settings {
    private readonly _options;
    readonly followSymbolicLink: boolean;
    readonly fs: fs.FileSystemAdapter;
    readonly markSymbolicLink: boolean;
    readonly throwErrorOnBrokenSymbolicLink: boolean;
    constructor(_options?: Options);
    private _getValue;
}
//# sourceMappingURL=settings.d.ts.map