megalodon/megalodon/src/pleroma/entities/relationship.ts
2022-01-02 16:28:11 +09:00

17 lines
354 B
TypeScript

namespace PleromaEntity {
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
subscribing: boolean
}
}