mirror of
https://github.com/versia-pub/server.git
synced 2025-12-06 16:38:19 +01:00
17 lines
336 B
TypeScript
17 lines
336 B
TypeScript
export interface 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;
|
|
languages: string[];
|
|
}
|