UNPKG

mindee

Version:

Mindee Client Library for Node.js

12 lines (11 loc) 323 B
export interface MindeeApiConstructorProps { apiKey?: string; } export declare abstract class BaseSettings { hostname: string; timeout: number; protected constructor(); protected getUserAgent(): string; protected abstract apiKeyFromEnv(): string; protected abstract hostnameFromEnv(): string; }