mirror of
https://github.com/spacebarchat/server.git
synced 2026-04-30 01:35:52 +00:00
12 lines
201 B
TypeScript
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]
|
|
}
|