X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=shared%2Fmodels%2Faccounts%2Ffollow.model.ts;h=8094634c1ed76c758f4a6e44b3c2484d30116f6e;hb=608624252466acf9f1d9ee1c1170bd4fe4d18d18;hp=80cfe07e4816fe696b008777b8d85990c5faee62;hpb=51548b31815c6f96f314ae96588a9adca150519d;p=github%2FChocobozzz%2FPeerTube.git 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 @@ export type FollowState = 'pending' | 'accepted' + +export interface AccountFollow { + id: number + name: string + score?: number // Used for followers + host: string +}