NET-Web-API-w-Angular/my-app/node_modules/tuf-js/dist/config.d.ts

15 lines
462 B
TypeScript
Raw Normal View History

2024-02-09 00:38:41 +00:00
import type { MakeFetchHappenOptions } from 'make-fetch-happen';
export type Config = {
maxRootRotations: number;
maxDelegations: number;
rootMaxLength: number;
timestampMaxLength: number;
snapshotMaxLength: number;
targetsMaxLength: number;
prefixTargetsWithHash: boolean;
fetchTimeout: number;
fetchRetries: number | undefined;
fetchRetry: MakeFetchHappenOptions['retry'];
};
export declare const defaultConfig: Config;