@kontent-ai/management-sdk
Version:
Official Kontent.ai management SDK
13 lines (12 loc) • 831 B
TypeScript
import { IManagementClientConfig } from '../../config';
import { CustomAppsResponses } from '../../responses';
import { ManagementQueryService } from '../../services';
import { BaseListingQuery } from '../base-listing-query';
export declare class ListCustomAppsQuery extends BaseListingQuery<CustomAppsResponses.CustomAppsListResponse, CustomAppsResponses.CustomAppsListAllResponse> {
protected config: IManagementClientConfig;
protected queryService: ManagementQueryService;
constructor(config: IManagementClientConfig, queryService: ManagementQueryService);
toPromise(): Promise<CustomAppsResponses.CustomAppsListResponse>;
protected getAction(): string;
protected allResponseFactory(items: any[], responses: CustomAppsResponses.CustomAppsListResponse[]): CustomAppsResponses.CustomAppsListAllResponse;
}