UNPKG

lambdaorm-client-node

Version:
55 lines (54 loc) 1.17 kB
/** * λORM Service * service of lambda orm * * The version of the OpenAPI document: 0.3.0 * Contact: flaviolrita@hotmail.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { Configuration } from "../../domain/configuration"; import { AxiosInstance, AxiosRequestConfig } from 'axios'; /** * * @export */ export declare const COLLECTION_FORMATS: { csv: string; ssv: string; tsv: string; pipes: string; }; /** * * @export * @interface RequestArgs */ export interface RequestArgs { url: string; options: AxiosRequestConfig; } /** * * @export * @class BaseAPI */ export declare class BaseAPI { protected axios: AxiosInstance; protected configuration: Configuration; protected basePath: string | undefined; constructor(configuration: Configuration, axios?: AxiosInstance); } /** * * @export * @class RequiredError * @extends {Error} */ export declare class RequiredError extends Error { field: string; name: "RequiredError"; constructor(field: string, msg?: string); }