1
0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2025-01-10 13:56:47 +01:00
immich/web/src/lib/stores/stacked-asset.store.ts
Alex 8b5b6d0821
feat(web): manual stacking asset (#4650)
Co-authored-by: shalong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
2023-10-27 20:34:01 +00:00

4 lines
168 B
TypeScript

import { writable } from 'svelte/store';
import type { AssetResponseDto } from '../../api/open-api';
export const stackAssetsStore = writable<AssetResponseDto[]>([]);