mirror of
https://github.com/immich-app/immich.git
synced 2026-04-26 02:59:49 -04:00
5 lines
142 B
TypeScript
5 lines
142 B
TypeScript
import { writable } from 'svelte/store';
|
|
|
|
//-----other
|
|
export const lastChosenLocation = writable<{ lng: number; lat: number } | null>(null);
|