mirror of
https://github.com/owncast/owncast.git
synced 2024-11-21 20:28:15 +03:00
7 lines
118 B
TypeScript
7 lines
118 B
TypeScript
|
export interface CurrentUser {
|
||
|
id: string;
|
||
|
displayName: string;
|
||
|
displayColor: number;
|
||
|
isModerator: boolean;
|
||
|
}
|