feat: add zoom lock and viewportZoomFactor

This commit is contained in:
Arnošt Pleskot
2023-07-10 18:10:22 +02:00
parent e8e391e465
commit 9562e4309f
2 changed files with 43 additions and 21 deletions
+4
View File
@@ -229,6 +229,10 @@ export type AppState = {
width: number;
height: number;
isAnimating?: boolean;
opts?: {
viewportZoomFactor?: number;
lockZoom?: boolean;
};
} | null;
};