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