server/types/entities/relationship.ts

17 lines
339 B
TypeScript
Raw Normal View History

2023-09-12 22:48:10 +02:00
export interface APIRelationship {
2023-09-11 05:31:08 +02:00
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;
2023-09-11 05:46:20 +02:00
languages: string[];
}