Interface MarkInterface

interface MarkInterface {
    black?: boolean;
    blue_move?: boolean;
    chat_triangle?: boolean;
    circle?: boolean;
    color?: string;
    cross?: boolean;
    hint?: boolean;
    letter?: string;
    mark_x?: boolean;
    needs_sealing?: boolean;
    remove?: boolean;
    score?: string;
    square?: boolean;
    stone_removed?: boolean;
    sub_triangle?: boolean;
    subscript?: string;
    transient_letter?: string;
    triangle?: boolean;
    white?: boolean;
    [label: string]: string | boolean | undefined;
}

Indexable

[label: string]: string | boolean | undefined

Properties

black?: boolean
blue_move?: boolean
chat_triangle?: boolean
circle?: boolean
color?: string
cross?: boolean
hint?: boolean
letter?: string
mark_x?: boolean
needs_sealing?: boolean
remove?: boolean
score?: string
square?: boolean
stone_removed?: boolean
sub_triangle?: boolean
subscript?: string
transient_letter?: string
triangle?: boolean
white?: boolean