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