8 lines
172 B
TypeScript
8 lines
172 B
TypeScript
|
import { IRoom } from '../../IRoom';
|
||
|
|
||
|
export type TeamsEndpoints = {
|
||
|
'teams.removeRoom': {
|
||
|
POST: (params: { roomId: string; teamId: string }) => { room: IRoom };
|
||
|
};
|
||
|
};
|