8 lines
167 B
TypeScript
8 lines
167 B
TypeScript
export type FollowState = 'pending' | 'accepted'
|
|
|
|
export interface AccountFollow {
|
|
id: number
|
|
name: string
|
|
score?: number // Used for followers
|
|
host: string
|
|
}
|