export const UNDO = Symbol('undo')
export type UNDO = typeof UNDO

export const REDO = Symbol('redo')
export type REDO = typeof REDO

export const RESET = Symbol('reset')
export type RESET = typeof RESET
