Rocket.Chat.ReactNative/app/definitions/rest/v1/teams.ts

8 lines
172 B
TypeScript
Raw Normal View History

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