UNPKG

@kontent-ai/management-sdk

Version:
16 lines 552 B
import { BaseQuery } from '../base-query'; export class GetCustomAppQuery extends BaseQuery { constructor(config, queryService, identifier) { super(config, queryService); this.config = config; this.queryService = queryService; this.identifier = identifier; } toPromise() { return this.queryService.getCustomAppAsync(this.getUrl(), this.queryConfig); } getAction() { return this.apiEndpoints.getCustomApp(this.identifier); } } //# sourceMappingURL=get-custom-app-query.class.js.map