This commit is contained in:
Freddy Boulton
2025-05-12 10:22:14 -04:00
committed by GitHub
parent bf71b2b0e9
commit 8f61ad855d
2 changed files with 2 additions and 0 deletions

View File

@@ -22,6 +22,7 @@
export let server: {
offer: (body: any) => Promise<any>;
turn: () => Promise<any>;
};
let stream_state: "open" | "closed" | "waiting" = "closed";

View File

@@ -12,6 +12,7 @@
export let on_change_cb: (msg: "change" | "tick") => void;
export let server: {
offer: (body: any) => Promise<any>;
turn: () => Promise<any>;
};
let video_element: HTMLVideoElement;