mirror of
https://github.com/immich-app/immich.git
synced 2025-06-12 21:38:37 +02:00
4 lines
157 B
TypeScript
4 lines
157 B
TypeScript
import { writable } from 'svelte/store';
|
|
import type { MemoryLaneResponseDto } from '@api';
|
|
|
|
export const memoryStore = writable<MemoryLaneResponseDto[]>();
|