Urara-Blog/node_modules/.pnpm-store/v3/files/1d/be5d8880b5aad2b11ea852cdc5b4fdb50ddb21b45499bc6158af758961e8b208f37bf90ecd3499503868bb0f4cfae61640f19bef060a790bd987cd1d572e16
2022-08-14 01:14:53 +08:00

20 lines
666 B
Text

import * as fsStat from '@nodelib/fs.stat';
import * as fs from './adapters/fs';
export interface Options {
followSymbolicLinks?: boolean;
fs?: Partial<fs.FileSystemAdapter>;
pathSegmentSeparator?: string;
stats?: boolean;
throwErrorOnBrokenSymbolicLink?: boolean;
}
export default class Settings {
private readonly _options;
readonly followSymbolicLinks: boolean;
readonly fs: fs.FileSystemAdapter;
readonly pathSegmentSeparator: string;
readonly stats: boolean;
readonly throwErrorOnBrokenSymbolicLink: boolean;
readonly fsStatSettings: fsStat.Settings;
constructor(_options?: Options);
private _getValue;
}