react-shields.io
Version:
Shields.io for react component, Quality metadata badges for open source projects.
19 lines (18 loc) • 509 B
TypeScript
import Base, { BaseProps } from '../common/Base';
export interface CodacyProps extends BaseProps {
/**
* Codacy Coverage
*
* `/codacy/coverage/:projectId`
* Codacy coverage: Codacy coverage badge
*
* `/codacy/coverage/:projectId/:branch`
* Codacy branch coverage: Codacy branch coverage badge
*/
projectId?: string;
branch?: string;
}
export default class Codacy extends Base<CodacyProps> {
constructor(props: CodacyProps);
getUrl: () => string;
}