UNPKG

mindee

Version:

Mindee Client Library for Node.js

11 lines (10 loc) 439 B
import { BaseSettings, MindeeApiConstructorProps } from "./baseSettings"; export declare const API_V2_KEY_ENVVAR_NAME: string; export declare const API_V2_HOST_ENVVAR_NAME: string; export declare class ApiSettingsV2 extends BaseSettings { apiKey: string; baseHeaders: Record<string, string>; constructor({ apiKey, }: MindeeApiConstructorProps); protected apiKeyFromEnv(): string; protected hostnameFromEnv(): string; }