summary refs log tree commit diff
path: root/src/util/schemas/MemberChangeSchema.ts
blob: 4156c8c1ef58d1297afd89d7683088a06b43491a (plain) (blame)
1
2
3
4
5
6
export interface MemberChangeSchema {
	roles?: string[];
	nick?: string;
	avatar?: string | null;
	bio?: string;
}