UNPKG

@topgroup/diginext

Version:

A BUILD SERVER & CLI to deploy apps to any Kubernetes clusters.

20 lines 526 B
export interface TrendingRepository { name: string; url: string; stars: number; language: string; } export interface GithubTrendOptions { /** * Programming language * @example "typescript", "go", "rust", "python",... */ lang?: string; /** * Date range. * @default "daily" */ time?: "daily" | "weekly" | "monthly"; } export declare function fetchTrendingRepos(options?: GithubTrendOptions): Promise<TrendingRepository[]>; //# sourceMappingURL=github-trends.d.ts.map