Newer
Older
percord / src / util / schemas / UserProfileModifySchema.ts
@Madeline Madeline on 31 Dec 2022 201 bytes Profile themes and pronouns
export interface UserProfileModifySchema {
	bio?: string;
	accent_color?: number | null;
	banner?: string | null;
	pronouns?: string;

	/*
	* @items.type integer
	*/
	theme_colors?: [number, number]
}