mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2025-12-05 03:12:13 +00:00
16 lines
258 B
TypeScript
16 lines
258 B
TypeScript
import { writable, type Writable } from 'svelte/store';
|
|
|
|
export enum Tool {
|
|
ROUTING,
|
|
WAYPOINT,
|
|
SCISSORS,
|
|
TIME,
|
|
MERGE,
|
|
EXTRACT,
|
|
ELEVATION,
|
|
REDUCE,
|
|
CLEAN,
|
|
}
|
|
|
|
export const currentTool: Writable<Tool | null> = writable(null);
|