mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2025-12-05 03:12:13 +00:00
18 lines
218 B
TypeScript
18 lines
218 B
TypeScript
|
|
export enum Tool {
|
||
|
|
ROUTING,
|
||
|
|
WAYPOINT,
|
||
|
|
SCISSORS,
|
||
|
|
TIME,
|
||
|
|
MERGE,
|
||
|
|
EXTRACT,
|
||
|
|
ELEVATION,
|
||
|
|
REDUCE,
|
||
|
|
CLEAN,
|
||
|
|
}
|
||
|
|
|
||
|
|
export const tool: {
|
||
|
|
current: Tool | null;
|
||
|
|
} = $state({
|
||
|
|
current: null,
|
||
|
|
});
|