owncast/web/interfaces/follower.ts

8 lines
125 B
TypeScript
Raw Permalink Normal View History

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