Chore: Migrate REST API - removeTeamRoom to Typescript (#3819)

This commit is contained in:
Gleidson Daniel Silva 2022-03-04 11:00:17 -03:00 committed by GitHub
parent 2e95a3c9a7
commit 4bd9dc0e09
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ import { IServerTeamUpdateRoom, ITeam, TEAM_TYPE } from '../../ITeam';
export type TeamsEndpoints = {
'teams.removeRoom': {
POST: (params: { roomId: string; teamId: string }) => { room: IRoom };
POST: (params: { roomId: string; teamId: string }) => { room: IServerRoomItem };
};
'teams.listRoomsOfUser': {
GET: (params: { teamId: string; userId: string }) => {