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;
}