@imbricate/core
Version:
Imbricate Core, Notebook for Engineers
26 lines (25 loc) • 1.04 kB
JavaScript
;
/**
* @author WMXPY
* @namespace Origin
* @description Exclude Static
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.ImbricateOriginExcludeStaticBase = void 0;
const feature_not_supported_1 = require("../../error/origin/feature-not-supported");
const feature_1 = require("../feature");
const full_feature_1 = require("./full-feature");
class ImbricateOriginExcludeStaticBase extends full_feature_1.ImbricateOriginFullFeatureBase {
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_SEARCH,
];
}
getStaticManager() {
throw feature_not_supported_1.ImbricateOriginFeatureNotSupportedError.withFeature(feature_1.IMBRICATE_ORIGIN_FEATURE.ORIGIN_STATIC_MANAGER);
}
}
exports.ImbricateOriginExcludeStaticBase = ImbricateOriginExcludeStaticBase;