badge-urls
Version:
Helper functions to generate URLs for all badges / shields from shields.io
6 lines (5 loc) • 485 B
TypeScript
import { ShieldsIOOptions } from "../../options";
/** Label for Maven Central with version prefix filter (/maven-central/v/:groupId/:artifactId/:versionPrefix) */
export declare const label = "Maven Central with version prefix filter";
/** URL for Maven Central with version prefix filter (/maven-central/v/:groupId/:artifactId/:versionPrefix) */
export declare const url: (groupid: string, artifactid: string, versionprefix: string, options?: ShieldsIOOptions | undefined) => string;