badge-urls
Version:
Helper functions to generate URLs for all badges / shields from shields.io
6 lines (5 loc) • 496 B
TypeScript
import { ShieldsIOOptions } from "../../options";
/** Label for Azure DevOps builds (branch) (/azure-devops/build/:organization/:projectId/:definitionId/:branch) */
export declare const label = "Azure DevOps builds (branch)";
/** URL for Azure DevOps builds (branch) (/azure-devops/build/:organization/:projectId/:definitionId/:branch) */
export declare const url: (organization: string, projectid: string, definitionid: string, branch: string, options?: ShieldsIOOptions | undefined) => string;