barkey/packages/megalodon/src/friendica/entities/relationship.ts
2023-09-24 01:44:53 +02:00

17 lines
378 B
TypeScript

namespace FriendicaEntity {
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 | null
}
}