@atlaskit/adf-utils
Version:
Set of utilities to traverse, modify and create ADF documents.
16 lines (15 loc) • 342 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.status = void 0;
var status = exports.status = function status() {
var attrs = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {
text: 'In progress',
color: 'blue'
};
return {
type: 'status',
attrs: attrs
};
};