mirror of
https://github.com/KevinMidboe/immich.git
synced 2025-10-29 17:40:28 +00:00
* fix(web): use id instead of assetId * chore(web): improve type checking * fix test jobs * improve type checking and resolve errors
5 lines
151 B
TypeScript
5 lines
151 B
TypeScript
import type { AssetResponseDto } from '@api';
|
|
import { writable } from 'svelte/store';
|
|
|
|
export const archivedAsset = writable<AssetResponseDto[]>([]);
|