File size: 440 Bytes
d5c6d34
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
export type AppState =
  | "requesting-permission"
  | "welcome"
  | "loading"
  | "captioning";

export interface WebcamPermissionError {
  type: "general" | "https" | "not-supported" | "permission";
  message: string;
  details: string;
}

export interface Position {
  x: number;
  y: number;
}

export interface Dimensions {
  width: number;
  height: number;
}

export type InitialPosition = "bottom-left" | "bottom-right" | Position;