Newer
Older
percord / src / schemas / StreamCreateSchema.ts
@Rory& Rory& on 14 Oct 258 bytes Move schemas to separate module
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,
};