iceshrimp-legacy/packages/megalodon/lib/src/entities/relationship.d.ts

18 lines
449 B
TypeScript

declare namespace Entity {
type Relationship = {
id: string;
following: boolean;
followed_by: boolean;
delivery_following?: boolean;
blocking: boolean;
blocked_by: boolean;
muting: boolean;
muting_notifications: boolean;
requested: boolean;
domain_blocking: boolean;
showing_reblogs: boolean;
endorsed: boolean;
notifying: boolean;
};
}