Sha256: 9a80e3322d08274f0e41b77923c91fe67b2c8a5134a5278c2cb60a330441554e
Contents?: true
Size: 666 Bytes
Versions: 53
Compression:
Stored size: 666 Bytes
Contents
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; }
Version data entries
53 entries across 53 versions & 4 rubygems