thelounge/shared/types/user.ts

9 lines
168 B
TypeScript
Raw Normal View History

2024-02-24 11:29:07 +01:00
export type SharedUser = {
modes: string[];
// Users in the channel have only one mode assigned
mode: string;
away: string;
nick: string;
lastMessage: number;
};