UNPKG

jsx-readme

Version:

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

11 lines (10 loc) 331 B
import type { Component } from "jsx-md"; import type { PackageJSON } from "../PackageJSON"; /** @internal */ interface Props { pkg: Readonly<PackageJSON>; title?: string; } /** Display a section linking to the homepage defined in package.json */ export declare const HomepageFromPkg: Component<Readonly<Props>>; export {};