UNPKG

badge-urls

Version:

Helper functions to generate URLs for all badges / shields from shields.io

6 lines (5 loc) 545 B
import { ShieldsIOOptions } from "../../options"; /** Label for Azure DevOps builds (stage) (/azure-devops/build/:organization/:projectId/:definitionId/:branch*?stage=Successful%20Stage) */ export declare const label = "Azure DevOps builds (stage)"; /** URL for Azure DevOps builds (stage) (/azure-devops/build/:organization/:projectId/:definitionId/:branch*?stage=Successful%20Stage) */ export declare const url: (organization: string, projectid: string, definitionid: string, branch: string, options?: ShieldsIOOptions | undefined) => string;