badge-urls
Version:
Helper functions to generate URLs for all badges / shields from shields.io
6 lines (5 loc) • 359 B
TypeScript
import { ShieldsIOOptions } from "../../options";
/** Label for Bitrise (/bitrise/:appId/:branch??token=GCIdEzacE4GW32jLVrZb7A) */
export declare const label = "Bitrise";
/** URL for Bitrise (/bitrise/:appId/:branch??token=GCIdEzacE4GW32jLVrZb7A) */
export declare const url: (appid: string, branch: string, options?: ShieldsIOOptions | undefined) => string;