UNPKG

aspose-barcode-cloud-node

Version:
31 lines (30 loc) 683 B
import { Authentication } from './Authentication'; export declare enum ApiVersion { v3 = "v3.0" } export declare class Configuration { /** * Authentication type. */ authentication: Authentication; /** * Client Id. */ clientId: string; /** * Client Secret. */ clientSecret: string; /** * Base Url. */ baseUrl: string; readonly version: ApiVersion; readonly accessToken: string; readonly tokenUrl: string; constructor(clientId: string, clientSecret: string, baseUrl?: string, accessToken?: string, tokenUrl?: string); /** * Returns api base url */ getApiBaseUrl(): string; }