mirror of
https://github.com/spacebarchat/server.git
synced 2026-09-17 01:35:26 +00:00
8 lines
126 B
TypeScript
8 lines
126 B
TypeScript
export interface StreamWatchSchema {
|
|
stream_key: string;
|
|
}
|
|
|
|
export const StreamWatchSchema = {
|
|
stream_key: String,
|
|
};
|