jsx-readme
Version:
Generate Readme files with a React-like syntax and package.json-aware helpers.
14 lines (13 loc) • 372 B
TypeScript
import { Component } from "jsx-md";
import type { Contributor } from "./ContributorsTable";
/** @internal */
interface Props {
title?: string;
repo: string;
owner: string;
contributors: Contributor[];
additionalContributorsCount?: number;
}
/** Displays a contributors section. */
export declare const ContributorsSection: Component<Props>;
export {};