summary refs log tree commit diff
path: root/src/util/schemas/UserRelationsResponse.ts
blob: 1ec15eca8fcb695299dcd964ef9c0008944587d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
export interface UserRelationsResponse {
	object: {
		id?: string;
		username?: string;
		avatar?: string;
		discriminator?: string;
		public_flags?: number;
	};
}