@imbricate/core
Version:
Imbricate Core, Notebook for Engineers
24 lines (23 loc) • 886 B
JavaScript
;
/**
* @author WMXPY
* @namespace Static
* @description Author Only
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.ImbricateStaticAuthorOnlyBase = void 0;
const feature_not_supported_1 = require("../../error/static/feature-not-supported");
const feature_1 = require("../feature");
const full_feature_1 = require("./full-feature");
class ImbricateStaticAuthorOnlyBase extends full_feature_1.ImbricateStaticFullFeatureBase {
constructor() {
super(...arguments);
this.supportedFeatures = [
feature_1.IMBRICATE_STATIC_FEATURE.STATIC_GET_AUTHOR,
];
}
getContentInBase64() {
throw feature_not_supported_1.ImbricateStaticFeatureNotSupportedError.withFeature(feature_1.IMBRICATE_STATIC_FEATURE.STATIC_GET_CONTENT);
}
}
exports.ImbricateStaticAuthorOnlyBase = ImbricateStaticAuthorOnlyBase;