UNPKG

@novo-learning/novo-sdk

Version:

SDK for the Novolanguage Speech Analysis API

25 lines (24 loc) 739 B
import { Configuration } from "./configuration"; import { AxiosInstance, AxiosRequestConfig } from 'axios'; export declare const BASE_PATH: string; export declare const COLLECTION_FORMATS: { csv: string; ssv: string; tsv: string; pipes: string; }; export interface RequestArgs { url: string; options: AxiosRequestConfig; } export declare class BaseAPI { protected basePath: string; protected axios: AxiosInstance; protected configuration: Configuration | undefined; constructor(configuration?: Configuration, basePath?: string, axios?: AxiosInstance); } export declare class RequiredError extends Error { field: string; name: "RequiredError"; constructor(field: string, msg?: string); }