1
0
Fork 0
mirror of https://github.com/owncast/owncast.git synced 2025-01-08 01:27:31 +03:00
owncast/web/interfaces/user.model.ts

11 lines
202 B
TypeScript
Raw Normal View History

export interface User {
id: string;
displayName: string;
displayColor: number;
createdAt: Date;
previousNames: string[];
nameChangedAt: Date;
scopes: string[];
authenticated: boolean;
}