aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/accounts/follow.model.ts
diff options
context:
space:
mode:
Diffstat (limited to 'shared/models/accounts/follow.model.ts')
-rw-r--r--shared/models/accounts/follow.model.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/shared/models/accounts/follow.model.ts b/shared/models/accounts/follow.model.ts
index 80cfe07e4..8094634c1 100644
--- a/shared/models/accounts/follow.model.ts
+++ b/shared/models/accounts/follow.model.ts
@@ -1 +1,8 @@
1export type FollowState = 'pending' | 'accepted' 1export type FollowState = 'pending' | 'accepted'
2
3export interface AccountFollow {
4 id: number
5 name: string
6 score?: number // Used for followers
7 host: string
8}