/** * FastAPI * * * OpenAPI spec version: 0.1.0 * * * NOTE: This class is auto generated by OpenAPI Generator+. * https://github.com/karlvr/openapi-generator-plus * Do not edit the class manually. */ import { Configuration } from "./configuration"; import fetch, { RequestInit } from 'node-fetch'; export declare const defaultFetch: typeof fetch; export declare const BASE_PATH = ""; /** * * @export */ export declare const COLLECTION_FORMATS: { csv: string; ssv: string; tsv: string; pipes: string; }; /** * * @export * @type FetchAPI */ export type FetchAPI = typeof defaultFetch; /** * * @export * @interface FetchArgs */ export interface FetchArgs { url: string; options: RequestInit; } /** * * @export * @class BaseAPI */ export declare class BaseAPI { protected basePath: string; protected fetch: FetchAPI; protected configuration?: Configuration; constructor(configuration?: Configuration, basePath?: string, fetch?: FetchAPI); } /** * * @export * @class RequiredError * @extends {Error} */ export declare class RequiredError extends Error { field: string; constructor(field: string, msg?: string); } //# sourceMappingURL=runtime.d.ts.map