This repository has been archived on 2026-02-28. You can view files and clone it, but cannot push or open issues or pull requests.
ServerSpacebarOld/src/util/schemas/StreamCreateSchema.ts
dank074 526a8da8f5
add webrtc support (#1284)
Co-authored-by: MaddyUnderStars <46743919+MaddyUnderStars@users.noreply.github.com>
2025-06-22 12:41:13 +10:00

14 lines
258 B
TypeScript

export interface StreamCreateSchema {
type: "guild" | "call";
channel_id: string;
guild_id?: string;
preferred_region?: string;
}
export const StreamCreateSchema = {
type: String,
channel_id: String,
$guild_id: String,
$preferred_region: String,
};