@atlaskit/adf-utils
Version:
Set of utilities to traverse, modify and create ADF documents.
16 lines (15 loc) • 352 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.doc = void 0;
var doc = exports.doc = function doc() {
for (var _len = arguments.length, content = new Array(_len), _key = 0; _key < _len; _key++) {
content[_key] = arguments[_key];
}
return {
type: 'doc',
version: 1,
content: content
};
};