@eddye68/studio-client
Version:
The AWS service Studio client
25 lines (23 loc) • 561 B
text/typescript
declare class ClientOptions {
constructor();
private _baseUrl;
/**
*
* @throws QqAwsServiceStudioClientClientError When the baseurl is not set
*/
get baseUrl(): string;
setBaseUrl(value: string): ClientOptions;
private _apiKey;
/**
* @returns The apiKey
* @throws QqAwsServiceStudioClientClientError When the apiKey is not set
*/
get apiKey(): string;
/**
*
* @param value The API key
* @returns
*/
setApiKey(value: string): ClientOptions;
}
export { ClientOptions };