RocketChat/Rocket.Chat

View on GitHub
packages/core-typings/src/federation/IMatrixBridgedUser.ts

Summary

Maintainability
A
0 mins
Test Coverage
import type { IRocketChatRecord } from '../IRocketChatRecord';

export interface IMatrixBridgedUser extends IRocketChatRecord {
    uid: string;
    mui: string;
    remote: boolean;
    fromServer?: string;
}