config.d.ts 350 B

123456789101112
  1. export declare const defaultConfig: {
  2. maxRootRotations: number;
  3. maxDelegations: number;
  4. rootMaxLength: number;
  5. timestampMaxLength: number;
  6. snapshotMaxLength: number;
  7. targetsMaxLength: number;
  8. prefixTargetsWithHash: boolean;
  9. fetchTimeout: number;
  10. fetchRetries: number;
  11. };
  12. export type Config = typeof defaultConfig;