export const BoardType = { project: 'project', group: 'group', }; export const ListType = { assignee: 'assignee', milestone: 'milestone', backlog: 'backlog', closed: 'closed', label: 'label', }; export const inactiveId = 0; export const ISSUABLE = 'issuable'; export const LIST = 'list'; export default { BoardType, ListType, };