Chore: Restructure Repository for SvelteKit

This commit is contained in:
Youwes09
2026-05-22 04:04:59 -05:00
parent bf071dcfc7
commit 8cef74bb98
266 changed files with 5093 additions and 396 deletions
+8
View File
@@ -0,0 +1,8 @@
import { clampZoom as _clampZoom, captureZoomAnchor, restoreZoomAnchor } from "@core/ui/zoom";
import { ZOOM_MIN, ZOOM_MAX } from "../store/readerState.svelte";
export { captureZoomAnchor, restoreZoomAnchor };
export function clampZoom(z: number): number {
return _clampZoom(z, ZOOM_MIN, ZOOM_MAX);
}