jsx-readme
Version:
Generate Readme files with a React-like syntax and package.json-aware helpers.
12 lines (11 loc) • 332 B
TypeScript
import { Component } from "jsx-md";
import { PackageJSON } from "../../PackageJSON";
/** @internal */
interface Props {
branch?: string;
workflowName: string;
pkg: Readonly<PackageJSON>;
}
/** Display a badge with the status of a GitHub Workflow */
export declare const GithubWorkflowBadge: Component<Props>;
export {};