UNPKG

jsx-readme

Version:

Generate Readme files with a React-like syntax and package.json-aware helpers.

14 lines (13 loc) 372 B
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 {};