Foxnouns.NET/Foxnouns.Frontend/src/lib/api/user.ts

10 lines
183 B
TypeScript
Raw Normal View History

2024-06-09 15:48:26 +02:00
export type User = {
id: string;
username: string;
display_name: string | null;
bio: string | null;
member_title: string | null;
avatar_url: string | null;
links: string[];
};