server/types/entities/relationship.ts
Jesse Wierzbinski 436a79d99f
Initial commit
2023-09-10 17:31:08 -10:00

17 lines
339 B
TypeScript

export type Relationship = {
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: Array<string>;
};