summary refs log tree commit diff
path: root/src/util/schemas/StreamWatchSchema.ts
blob: 263bb11fb841ef1b3e921940422c36ae7e12415c (plain) (blame)
1
2
3
4
5
6
7
export interface StreamWatchSchema {
	stream_key: string;
}

export const StreamWatchSchema = {
	stream_key: String,
};