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