UNPKG

@kontent-ai/management-sdk

Version:
15 lines 532 B
import { BaseQuery } from '../base-query'; export class CheckWebSpotlightStatusQuery extends BaseQuery { constructor(config, queryService) { super(config, queryService); this.config = config; this.queryService = queryService; } toPromise() { return this.queryService.checkWebSpotlightStatusAsync(this.getUrl(), this.queryConfig); } getAction() { return this.apiEndpoints.checkWebSpotlightStatus(); } } //# sourceMappingURL=check-web-spotlight-status-query.class.js.map