groupdocs-parser-cloud
Version:
GroupDocs.Parser Cloud SDK for Node.js
40 lines (39 loc) • 914 B
TypeScript
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;
/**
* @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/1.0"
*/
getServerUrl(): string;
}