Files
server/src/util/schemas/UserProfileModifySchema.ts
T
2022-12-31 17:51:57 +11:00

12 lines
201 B
TypeScript

export interface UserProfileModifySchema {
bio?: string;
accent_color?: number | null;
banner?: string | null;
pronouns?: string;
/*
* @items.type integer
*/
theme_colors?: [number, number]
}