UNPKG

@asposecloud/aspose-tasks-cloud

Version:
36 lines (35 loc) 792 B
import { IAuthentication } from "../internal/auth"; /** * Tasks API configuration */ export declare class Configuration { /** * Authentication. */ authentication: IAuthentication; /** * App SID. */ appSID: string; /** * App key. */ appKey: string; /** * Base Url. */ baseUrl: string; /** * Auth Url. */ authUrl: string; /** * Gets or sets a value indicating whether debug mode. In debug mode all requests and responses are logged to console. */ debugMode: boolean; constructor(appSID: string, appKey: string, baseUrl?: string, authUrl?: string, debugMode?: boolean); /** * Returns api base url */ getApiBaseUrl(): string; }