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