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