@chroniq/chroniq-accessors-object
Version:
storybook for chroniq
46 lines (44 loc) • 743 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
var accessors = exports.accessors = {
event: {
id: 'id',
resourceId: 'resourceId',
title: 'title',
start: 'start',
end: 'end',
color: 'color',
allDay: 'allDay'
},
backgroundEvent: {
id: 'id',
resourceId: 'resourceId',
title: 'title',
start: 'start',
end: 'end',
color: 'color'
},
businessHours: {
id: 'id',
start: 'start',
end: 'end'
},
resource: {
id: 'id',
title: 'title',
color: 'color'
}
};
var mutators = exports.mutators = {
event: {
resourceId: 'resourceId'
},
backgroundEvent: {
resourceId: 'resourceId'
},
resource: {
color: 'color'
}
};