File size: 357 Bytes
2485dd8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
export type URLParamsObject = {
  animateTextDisplay: boolean;
  autoJoin: boolean;
  debug: boolean;
  enableServerLock: boolean;
  roomID: string | null;
  serverURL: string | null;
  skipARIntro: boolean;
  ARTranscriptionType:
  | 'single_block'
  | 'lines'
  | 'lines_with_background'
  | string;
};

export type URLParamNames = keyof URLParamsObject;