Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

settings.d.ts 730B

123456789101112131415161718192021
  1. import * as fsStat from '@nodelib/fs.stat';
  2. import * as fs from './adapters/fs';
  3. export declare type Options = {
  4. followSymbolicLinks?: boolean;
  5. fs?: Partial<fs.FileSystemAdapter>;
  6. pathSegmentSeparator?: string;
  7. stats?: boolean;
  8. throwErrorOnBrokenSymbolicLink?: boolean;
  9. };
  10. export default class Settings {
  11. private readonly _options;
  12. readonly followSymbolicLinks: boolean;
  13. readonly fs: fs.FileSystemAdapter;
  14. readonly pathSegmentSeparator: string;
  15. readonly stats: boolean;
  16. readonly throwErrorOnBrokenSymbolicLink: boolean;
  17. readonly fsStatSettings: fsStat.Settings;
  18. constructor(_options?: Options);
  19. private _getValue;
  20. }
  21. //# sourceMappingURL=settings.d.ts.map