mirror of
https://github.com/immich-app/immich.git
synced 2025-01-10 13:56:47 +01:00
5 lines
171 B
TypeScript
5 lines
171 B
TypeScript
|
import { writable } from 'svelte/store';
|
||
|
import type { MemoryLaneResponseDto } from '../../api/open-api';
|
||
|
|
||
|
export const memoryStore = writable<MemoryLaneResponseDto[]>();
|