mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 12:49:37 +03:00
7 lines
125 B
TypeScript
7 lines
125 B
TypeScript
export interface Follower {
|
|
name: string;
|
|
description?: string;
|
|
username?: string;
|
|
image?: string;
|
|
link: string;
|
|
}
|