blob: 1e53d9e46dffa1721368524ac5a0424bd7168012 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
export interface UserProfileModifySchema {
bio?: string;
accent_color?: number | null;
banner?: string | null;
pronouns?: string;
/*
* @items.type integer
*/
theme_colors?: [number, number]
}
|