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