@reis/seki
Version:
Seki – A modern javascript based Go board renderer and player, that is simple to use, extensible, compact and intuitive.
25 lines (20 loc) • 391 B
JavaScript
//Markup types
export const markupTypes = {
//Drawable
TRIANGLE: 'triangle',
CIRCLE: 'circle',
SQUARE: 'square',
DIAMOND: 'diamond',
MARK: 'mark',
HAPPY: 'happy',
SAD: 'sad',
LABEL: 'label',
//Currently not implemented
ARROW: 'arrow',
LINE: 'line',
//Special
SELECT: 'select',
VARIATION: 'variation',
LAST_MOVE: 'lastMove',
MOVE_NUMBER: 'moveNumber',
}