RocketChat/Rocket.Chat

View on GitHub
packages/rest-typings/src/v1/teams/ITeamMemberParams.ts

Summary

Maintainability
A
0 mins
Test Coverage
import type { IRole } from '@rocket.chat/core-typings';

export interface ITeamMemberParams {
    userId: string;
    roles?: Array<IRole['_id']> | null;
}