UNPKG

@imbricate/core

Version:

Imbricate Core, Notebook for Engineers

25 lines (24 loc) 1.08 kB
"use strict"; /** * @author WMXPY * @namespace StaticManager * @description Readonly */ Object.defineProperty(exports, "__esModule", { value: true }); exports.ImbricateStaticManagerReadonlyBase = 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 ImbricateStaticManagerReadonlyBase 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_GET_STATIC_URI, ]; } createInBase64(_content, _mimeType, _auditOptions) { throw feature_not_supported_1.ImbricateStaticManagerFeatureNotSupportedError.withFeature(feature_1.IMBRICATE_STATIC_MANAGER_FEATURE.STATIC_MANAGER_CREATE_STATIC); } } exports.ImbricateStaticManagerReadonlyBase = ImbricateStaticManagerReadonlyBase;