1 2 3 4 5 6 7 8 9 10 11 12 13
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, };