Files
immich/web/src/lib/managers/timeline-manager/utils.svelte.ts

5 lines
247 B
TypeScript
Raw Normal View History

import type { TimelineAsset } from './types';
export const assetSnapshot = (asset: TimelineAsset): TimelineAsset => $state.snapshot(asset);
export const assetsSnapshot = (assets: TimelineAsset[]) => assets.map((asset) => $state.snapshot(asset));