config.d.ts 462 B

1234567891011121314
  1. import type { MakeFetchHappenOptions } from 'make-fetch-happen';
  2. export type Config = {
  3. maxRootRotations: number;
  4. maxDelegations: number;
  5. rootMaxLength: number;
  6. timestampMaxLength: number;
  7. snapshotMaxLength: number;
  8. targetsMaxLength: number;
  9. prefixTargetsWithHash: boolean;
  10. fetchTimeout: number;
  11. fetchRetries: number | undefined;
  12. fetchRetry: MakeFetchHappenOptions['retry'];
  13. };
  14. export declare const defaultConfig: Config;