UNPKG

groupdocs-conversion-cloud

Version:
44 lines (43 loc) 990 B
import { IAuthentication } from "./auth"; /** * Words API configuration */ export declare class Configuration { /** * Authentication */ authentication: IAuthentication; /** * Application identifier (App SID) */ appSid: string; /** * Application private key (App Key) */ appKey: string; /** * API base URL, default is 'https://api.groupdocs.cloud' */ apiBaseUrl: string; /** * Gets or sets the API version */ apiVersion: string; /** * When enabled all requests and responses are logged to console */ debugging: boolean; /** * Request timeout in milliseconds */ timeout: number; /** * @param appSid Application identifier (App SID) * @param appKey Application private key (App Key) */ constructor(appSid: string, appKey: string); /** * Returns server url e.g "https://api.groupdocs.cloud/2.0" */ getServerUrl(): string; }