quill-delta-to-html
Version:
Converts Quill's delta ops to HTML
21 lines (20 loc) • 522 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var InsertDataQuill = (function () {
function InsertDataQuill(type, value) {
this.type = type;
this.value = value;
}
return InsertDataQuill;
}());
exports.InsertDataQuill = InsertDataQuill;
;
var InsertDataCustom = (function () {
function InsertDataCustom(type, value) {
this.type = type;
this.value = value;
}
return InsertDataCustom;
}());
exports.InsertDataCustom = InsertDataCustom;
;
;