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

export const StreamWatchSchema = {
    stream_key: String,
};