@contentful/rich-text-types
Version:
Type definitions and constants for the Contentful rich text field type.
21 lines (20 loc) • 520 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "MARKS", {
enumerable: true,
get: function() {
return MARKS;
}
});
var MARKS = /*#__PURE__*/ function(MARKS) {
MARKS["BOLD"] = "bold";
MARKS["ITALIC"] = "italic";
MARKS["UNDERLINE"] = "underline";
MARKS["CODE"] = "code";
MARKS["SUPERSCRIPT"] = "superscript";
MARKS["SUBSCRIPT"] = "subscript";
MARKS["STRIKETHROUGH"] = "strikethrough";
return MARKS;
}({});