badge-urls
Version:
Helper functions to generate URLs for all badges / shields from shields.io
6 lines (5 loc) • 375 B
TypeScript
import { ShieldsIOOptions } from "../../options";
/** Label for GitHub milestones (/github/milestones/:variant/:user/:repo) */
export declare const label = "GitHub milestones";
/** URL for GitHub milestones (/github/milestones/:variant/:user/:repo) */
export declare const url: (variant: string, user: string, repo: string, options?: ShieldsIOOptions | undefined) => string;