Files
owncast/web/interfaces/follower.ts
2022-04-28 14:36:05 -07:00

8 lines
125 B
TypeScript

export interface Follower {
name: string;
description?: string;
username?: string;
image?: string;
link: string;
}