@scalar/openapi-parser
Version:
modern OpenAPI parser written in TypeScript
15 lines • 523 B
TypeScript
import type { LoadPlugin } from '../../utils/load/load.js';
export declare const fetchUrlsDefaultConfiguration: {
limit: number;
};
export declare const fetchUrls: (customConfiguration?: {
/**
* Limit the number of requests. Set to `false` to disable the limit.
*/
limit?: number | false;
/**
* Fetch function to use instead of the global fetch. Use this to intercept requests.
*/
fetch?: (url: string) => Promise<Response>;
}) => LoadPlugin;
//# sourceMappingURL=fetch-urls.d.ts.map