import { Watchable } from '../globalUtils' /** * types */ export interface HistoryItem { i: number x: number y: number } /** * variables */ export const cordHist = new Watchable([]) export const isOpen = new Watchable(false) export const active = new Watchable(false) export const isLoading = new Watchable(false)