server/types/entities/relationship.ts
2024-04-06 19:30:49 -10:00

17 lines
381 B
TypeScript

export interface APIRelationship {
id: string;
following: boolean;
followed_by: boolean;
blocking: boolean;
blocked_by: boolean;
muting: boolean;
muting_notifications: boolean;
requested: boolean;
domain_blocking: boolean;
showing_reblogs: boolean;
endorsed: boolean;
notifying: boolean;
note: string;
languages: string[];
}