UNPKG

jsx-readme

Version:

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

12 lines (11 loc) 359 B
import type { Component } from "jsx-md"; import type { PackageJSON } from "../PackageJSON"; /** @internal */ interface Props { licenseFilePath?: string; pkg: Readonly<PackageJSON>; title?: string; } /** Display a section indicating the license defined in package.json */ export declare const LicenseFromPkg: Component<Readonly<Props>>; export {};