added zoom functionality, need to add endpoint to post

This commit is contained in:
2025-09-29 15:21:22 +01:00
parent 3b9469496b
commit c5c8218e1a
9 changed files with 171 additions and 26 deletions

View File

@@ -251,3 +251,13 @@ export type CameraBlackBoardOptions = {
export type CameraBlackboardResponse = {
data: object;
};
export type ZoomLevel = {
left: number;
top: number;
x: number;
y: number;
px: number;
py: number;
level?: number;
};