owncast/web/interfaces/user.model.ts
2022-08-20 16:16:24 -07:00

10 lines
202 B
TypeScript

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