mirror of
https://github.com/owncast/owncast.git
synced 2024-11-23 13:24:33 +03:00
10 lines
202 B
TypeScript
10 lines
202 B
TypeScript
export interface User {
|
|
id: string;
|
|
displayName: string;
|
|
displayColor: number;
|
|
createdAt: Date;
|
|
previousNames: string[];
|
|
nameChangedAt: Date;
|
|
scopes: string[];
|
|
authenticated: boolean;
|
|
}
|