@kontent-ai/management-sdk
Version:
Official Kontent.ai management SDK
14 lines (13 loc) • 742 B
TypeScript
import { IManagementClientConfig } from '../../config';
import { CustomAppsResponses } from '../../responses';
import { ManagementQueryService } from '../../services';
import { BaseQuery } from '../base-query';
import { Identifiers } from '../../models';
export declare class GetCustomAppQuery extends BaseQuery<CustomAppsResponses.GetCustomAppResponse> {
protected config: IManagementClientConfig;
protected queryService: ManagementQueryService;
identifier: Identifiers.CustomAppIdentifier;
constructor(config: IManagementClientConfig, queryService: ManagementQueryService, identifier: Identifiers.CustomAppIdentifier);
toPromise(): Promise<CustomAppsResponses.GetCustomAppResponse>;
protected getAction(): string;
}