web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
578 B

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