New WebRTC and Video Player

This commit is contained in:
2025-10-02 18:46:37 +05:30
parent 0928f78a1f
commit 1063c4e9a9
9 changed files with 1495 additions and 60 deletions
+4
View File
@@ -26,6 +26,8 @@ export { default as PasswordField } from "../src/components/PasswordField.astro"
export { default as ThemeSwitcher } from "../src/components/ThemeSwitcher.astro";
export { default as TimePicker } from "../src/components/TimePicker.astro";
export { default as Tooltip } from "../src/components/Tooltip.astro";
export { default as VideoPlayer } from "../src/components/VideoPlayer.astro";
export { default as WebRtcPlayer } from "../src/components/WebRtcPlayer.astro";
export { cn } from "../src/utils/cn.js";
`;
@@ -51,6 +53,8 @@ export const PasswordField: any;
export const ThemeSwitcher: any;
export const TimePicker: any;
export const Tooltip: any;
export const VideoPlayer: any;
export const WebRtcPlayer: any;
export function cn(...classes: Array<string | number | false | null | undefined>): string;
`;