asposecellscloud
Version:
Aspose.Cells Cloud for Node.js to create, repair, merge, parse and convert excel files. Convert excel to PDF, JSON, XML, TSV, HTML and so on.
36 lines (35 loc) • 791 B
TypeScript
import { IAuthentication } from "../internal/auth";
/**
* Words API configuration
*/
export declare class Configuration {
/**
* Authentication.
*/
authentication: IAuthentication;
/**
* client Id.
*/
clientId: string;
/**
* client Secret.
*/
clientSecret: string;
/**
* Base Url.
*/
baseUrl: string;
/**
* Base version.
*/
apiVersion: string;
/**
* Gets or sets a value indicating whether debug mode. In debug mode all requests and responses are logged to console.
*/
debugMode: boolean;
constructor(clientId: string, clientSecret: string, apiVersion?: string, baseUrl?: string, debugMode?: boolean);
/**
* Returns api base url
*/
getApiBaseUrl(): string;
}