@imbricate/core
Version:
Imbricate Core, Notebook for Engineers
24 lines (23 loc) • 1.04 kB
JavaScript
;
/**
* @author WMXPY
* @namespace StaticManager
* @description Readonly Blob
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.ImbricateStaticManagerReadonlyBlobBase = void 0;
const feature_not_supported_1 = require("../../error/static-manager/feature-not-supported");
const feature_1 = require("../feature");
const full_feature_blob_1 = require("./full-feature-blob");
class ImbricateStaticManagerReadonlyBlobBase extends full_feature_blob_1.ImbricateStaticManagerFullFeatureBlobBase {
constructor() {
super(...arguments);
this.supportedFeatures = [
feature_1.IMBRICATE_STATIC_MANAGER_FEATURE.STATIC_MANAGER_GET_STATIC,
];
}
createInBase64(_content, _mimeType, _auditOptions) {
throw feature_not_supported_1.ImbricateStaticManagerFeatureNotSupportedError.withFeature(feature_1.IMBRICATE_STATIC_MANAGER_FEATURE.STATIC_MANAGER_CREATE_STATIC);
}
}
exports.ImbricateStaticManagerReadonlyBlobBase = ImbricateStaticManagerReadonlyBlobBase;