UNPKG

@kontent-ai/management-sdk

Version:
15 lines 548 B
import { BaseQuery } from '../base-query'; export class GetLivePreviewConfigurationQuery extends BaseQuery { constructor(config, queryService) { super(config, queryService); this.config = config; this.queryService = queryService; } toPromise() { return this.queryService.getLivePreviewConfigurationAsync(this.getUrl(), this.queryConfig); } getAction() { return this.apiEndpoints.getLivePreviewConfiguration(); } } //# sourceMappingURL=get-live-preview-configuration-query.class.js.map