mirror of
https://github.com/Zagrios/bs-manager.git
synced 2026-07-03 14:08:25 +02:00
8 lines
168 B
TypeScript
8 lines
168 B
TypeScript
import { SupporterType } from "./supporter.type";
|
|
|
|
export interface Supporter {
|
|
username: string,
|
|
type?: SupporterType,
|
|
link?: string,
|
|
image?: string,
|
|
} |