]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - shared/models/accounts/follow.model.ts
Rename Pod -> Server
[github/Chocobozzz/PeerTube.git] / shared / models / accounts / follow.model.ts
index 80cfe07e4816fe696b008777b8d85990c5faee62..8094634c1ed76c758f4a6e44b3c2484d30116f6e 100644 (file)
@@ -1 +1,8 @@
 export type FollowState = 'pending' | 'accepted'
+
+export interface AccountFollow {
+  id: number
+  name: string
+  score?: number // Used for followers
+  host: string
+}