@kontent-ai/management-sdk
Version:
Official Kontent.ai management SDK
12 lines (11 loc) • 611 B
TypeScript
import { BaseQuery } from '../base-query';
import { BaseResponses } from '../../responses';
import { IManagementClientConfig } from '../../config';
import { ManagementQueryService } from '../../services';
export declare class DeleteEnvironmentQuery extends BaseQuery<BaseResponses.EmptyContentManagementResponse> {
protected config: IManagementClientConfig;
protected queryService: ManagementQueryService;
constructor(config: IManagementClientConfig, queryService: ManagementQueryService);
toPromise(): Promise<BaseResponses.EmptyContentManagementResponse>;
protected getAction(): string;
}