mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-28 14:32:26 +00:00
11 lines
161 B
JavaScript
11 lines
161 B
JavaScript
export const DIRECTIONS = {
|
|
UP: 'up',
|
|
DOWN: 'down',
|
|
LEFT: 'left',
|
|
RIGHT: 'right',
|
|
}
|
|
|
|
export const PLACEMENTS = {
|
|
BEFORE: 'before',
|
|
AFTER: 'after',
|
|
}
|