This commit is contained in:
2026-04-18 23:11:35 +02:00
commit f7cfd2a86e
196 changed files with 35538 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
/// <reference types="vite/client" />
// LiveKit ships a prebuilt E2EE worker bundle. Vite's `?worker` suffix
// converts it into a Worker constructor at build-time.
declare module 'livekit-client/e2ee-worker?worker' {
const WorkerCtor: new (options?: WorkerOptions) => Worker;
export default WorkerCtor;
}