15 lines
353 B
TypeScript
15 lines
353 B
TypeScript
namespace MisskeyEntity {
|
|
export type Relation = {
|
|
id: string
|
|
isFollowing: boolean
|
|
hasPendingFollowRequestFromYou: boolean
|
|
hasPendingFollowRequestToYou: boolean
|
|
isFollowed: boolean
|
|
isBlocking: boolean
|
|
isBlocked: boolean
|
|
isMuted: boolean
|
|
isRenoteMuted: boolean
|
|
isInstanceMuted?: boolean
|
|
memo?: string | null
|
|
}
|
|
}
|