8 lines
107 B
TypeScript
8 lines
107 B
TypeScript
export interface JoinParams {
|
|
rooms: string[];
|
|
}
|
|
|
|
export interface NotifyParams<T> {
|
|
array: T[];
|
|
}
|