summary refs log tree commit diff
path: root/src/util/schemas/UserProfileModifySchema.ts
blob: 840e9c3ea2a0bf19ce01f3c90ee577dd815f8ba6 (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];
}