immich/web/src/lib/stores/asset-editor.store.ts
2026-01-09 17:59:52 -05:00

5 lines
142 B
TypeScript

import { writable } from 'svelte/store';
//-----other
export const lastChosenLocation = writable<{ lng: number; lat: number } | null>(null);