quill-delta-to-html
Version:
Converts Quill's delta ops to HTML
41 lines (40 loc) • 972 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var InlineGroup = (function () {
function InlineGroup(ops) {
this.ops = ops;
}
return InlineGroup;
}());
exports.InlineGroup = InlineGroup;
var VideoItem = (function () {
function VideoItem(op) {
this.op = op;
}
return VideoItem;
}());
exports.VideoItem = VideoItem;
var BlockGroup = (function () {
function BlockGroup(op, ops) {
this.op = op;
this.ops = ops;
}
return BlockGroup;
}());
exports.BlockGroup = BlockGroup;
var ListGroup = (function () {
function ListGroup(items) {
this.items = items;
}
return ListGroup;
}());
exports.ListGroup = ListGroup;
var ListItem = (function () {
function ListItem(item, innerList) {
if (innerList === void 0) { innerList = null; }
this.item = item;
this.innerList = innerList;
}
return ListItem;
}());
exports.ListItem = ListItem;
;