UNPKG

@imbricate/core

Version:

Imbricate Core, Notebook for Engineers

30 lines (29 loc) 1.35 kB
"use strict"; /** * @author WMXPY * @namespace Origin * @description Full Feature */ Object.defineProperty(exports, "__esModule", { value: true }); exports.ImbricateOriginFullFeatureBase = void 0; const feature_not_supported_1 = require("../../error/origin/feature-not-supported"); const feature_1 = require("../feature"); const full_feature_with_action_1 = require("./full-feature-with-action"); class ImbricateOriginFullFeatureBase extends full_feature_with_action_1.ImbricateOriginFullFeatureWithActionBase { constructor() { super(...arguments); this.supportedFeatures = [ feature_1.IMBRICATE_ORIGIN_FEATURE.ORIGIN_DATABASE_MANAGER, feature_1.IMBRICATE_ORIGIN_FEATURE.ORIGIN_TEXT_MANAGER, feature_1.IMBRICATE_ORIGIN_FEATURE.ORIGIN_STATIC_MANAGER, feature_1.IMBRICATE_ORIGIN_FEATURE.ORIGIN_SEARCH, ]; } queryOriginActions(_query) { throw feature_not_supported_1.ImbricateOriginFeatureNotSupportedError.withFeature(feature_1.IMBRICATE_ORIGIN_FEATURE.ORIGIN_GET_ORIGIN_ACTIONS); } executeOriginAction(_input) { throw feature_not_supported_1.ImbricateOriginFeatureNotSupportedError.withFeature(feature_1.IMBRICATE_ORIGIN_FEATURE.ORIGIN_EXECUTE_ORIGIN_ACTION); } } exports.ImbricateOriginFullFeatureBase = ImbricateOriginFullFeatureBase;