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