@imbricate/core
Version:
Imbricate Core, Notebook for Engineers
25 lines (24 loc) • 1.11 kB
JavaScript
;
/**
* @author WMXPY
* @namespace StaticManager
* @description Full Feature Blob
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.ImbricateStaticManagerFullFeatureBlobBase = void 0;
const feature_not_supported_1 = require("../../error/static-manager/feature-not-supported");
const feature_1 = require("../feature");
const full_feature_1 = require("./full-feature");
class ImbricateStaticManagerFullFeatureBlobBase extends full_feature_1.ImbricateStaticManagerFullFeatureBase {
constructor() {
super(...arguments);
this.supportedFeatures = [
feature_1.IMBRICATE_STATIC_MANAGER_FEATURE.STATIC_MANAGER_GET_STATIC,
feature_1.IMBRICATE_STATIC_MANAGER_FEATURE.STATIC_MANAGER_CREATE_STATIC,
];
}
getStaticUri(_staticUniqueIdentifier) {
throw feature_not_supported_1.ImbricateStaticManagerFeatureNotSupportedError.withFeature(feature_1.IMBRICATE_STATIC_MANAGER_FEATURE.STATIC_MANAGER_GET_STATIC_URI);
}
}
exports.ImbricateStaticManagerFullFeatureBlobBase = ImbricateStaticManagerFullFeatureBlobBase;