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