mirror of
https://github.com/owncast/owncast.git
synced 2024-10-10 19:16:02 +00:00
8 lines
125 B
TypeScript
8 lines
125 B
TypeScript
export interface Follower {
|
|
name: string;
|
|
description?: string;
|
|
username?: string;
|
|
image?: string;
|
|
link: string;
|
|
}
|