4 lines
No EOL
140 B
TypeScript
4 lines
No EOL
140 B
TypeScript
export const Tools = ["marker", "text"] as const
|
|
export type Tool = typeof Tools[number]
|
|
|
|
export interface Position { x: number, y: number } |