server/types/mastodon/relationship.ts

17 lines
385 B
TypeScript
Raw Normal View History

2024-04-14 12:53:21 +02:00
export type Relationship = {
2024-04-07 07:30:49 +02:00
id: string;
following: boolean;
followed_by: boolean;
blocking: boolean;
blocked_by: boolean;
muting: boolean;
muting_notifications: boolean;
requested: boolean;
requested_by: boolean;
2024-04-07 07:30:49 +02:00
domain_blocking: boolean;
showing_reblogs: boolean;
endorsed: boolean;
notifying: boolean;
2024-04-14 12:53:21 +02:00
note: string | null;
};