Welcome to mirror list, hosted at ThFree Co, Russian Federation.

settings.d.ts « out « fs.stat « @nodelib « node_modules « assets - github.com/fourtyone11/origin-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 34c46206b289111db7a6efa10f5778aea40f6482 (plain)
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