summary refs log tree commit diff
path: root/src/util/schemas/responses/UserRelationshipsResponse.ts
blob: dff2f11871fd8851ceb6a2504f2a7c9cdf04b729 (plain) (blame)
1
2
3
4
5
6
7
8
import { PublicUser, RelationshipType } from "../../entities";

export interface UserRelationshipsResponse {
	id: string;
	type: RelationshipType;
	nickname: null;
	user: PublicUser;
}