mirror of
https://github.com/immich-app/immich.git
synced 2025-12-24 01:11:32 +03:00
* Photoviewer * make copyImage/zoomToggle optional * Add e2e test * lint * Accept bo0tzz suggestion Co-authored-by: bo0tzz <git@bo0tzz.me> * Bad merge and review comments * unused import --------- Co-authored-by: bo0tzz <git@bo0tzz.me> Co-authored-by: Alex <alex.tran1502@gmail.com>
6 lines
209 B
TypeScript
6 lines
209 B
TypeScript
import type { ZoomImageWheelState } from '@zoom-image/core';
|
|
import { writable } from 'svelte/store';
|
|
|
|
export const photoZoomState = writable<ZoomImageWheelState>();
|
|
export const zoomed = writable<boolean>();
|