* feat(web): add zoom toggle icon * update zoom-image dependency * fix lint issues * remove variable testing line * Simplify code using ternary conditional Co-authored-by: Thomas <9749173+uhthomas@users.noreply.github.com> * fix typo --------- Co-authored-by: Thomas <9749173+uhthomas@users.noreply.github.com>
5 lines
166 B
TypeScript
5 lines
166 B
TypeScript
import { writable } from 'svelte/store';
|
|
import type { ZoomImageWheelState } from '@zoom-image/core';
|
|
|
|
export const photoZoomState = writable<ZoomImageWheelState>();
|