jsx-readme
Version:
Generate Readme files with a React-like syntax and package.json-aware helpers.
13 lines (12 loc) • 379 B
TypeScript
import { Component } from "jsx-md";
import { PackageJSON } from "../PackageJSON";
/** @internal */
interface Props {
title?: string;
pkg: PackageJSON;
githubAccessToken?: string;
contributorsMaxDisplayLength?: number;
}
/** Displays a contributors section from a package.json file. */
export declare const ContributorsSectionFromPkg: Component<Props>;
export {};