summary refs log tree commit diff
path: root/src/util/schemas/responses/UserRelationsResponse.ts
blob: e784cafb009815cf5f232be281818f5677a7b126 (plain) (blame)
1
2
3
4
5
6
7
import { User } from "@spacebar/util";

export type UserRelationsResponse = (Pick<User, "id"> &
	Pick<User, "username"> &
	Pick<User, "discriminator"> &
	Pick<User, "avatar"> &
	Pick<User, "public_flags">)[];