hadron-document
Version:
Hadron Document
23 lines • 681 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.STRING_TYPE = void 0;
const standard_1 = __importDefault(require("./standard"));
exports.STRING_TYPE = 'String';
/**
* CRUD editor for string values.
*/
class StringEditor extends standard_1.default {
/**
* Create the editor with the element.
*
* @param {Element} element - The hadron document element.
*/
constructor(element) {
super(element);
}
}
exports.default = StringEditor;
//# sourceMappingURL=string.js.map