UNPKG

@reliverse/rse

Version:

@reliverse/rse is your all-in-one companion for bootstrapping and improving any kind of projects (especially web apps built with frameworks like Next.js) — whether you're kicking off something new or upgrading an existing app. It is also a little AI-power

17 lines (16 loc) 638 B
export interface SponsorEntry { readonly sponsor: { readonly login: string; readonly name?: string | null; readonly avatarUrl?: string | null; readonly websiteUrl?: string | null; readonly linkUrl?: string | null; readonly type?: string; }; readonly isOneTime: boolean; readonly monthlyDollars?: number; readonly tierName?: string; } export declare const SPONSORS_JSON_URL = "https://sponsors.amanv.dev/sponsors.json"; export declare function fetchSponsors(url?: string): Promise<SponsorEntry[]>; export declare function displaySponsors(sponsors: SponsorEntry[]): void;