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