UNPKG

jsx-readme

Version:

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

14 lines (13 loc) 428 B
/// <reference types="node" /> import type { Component } from "jsx-md"; import type { PackageJSON } from "../PackageJSON"; /** @internal */ interface Props { encoding?: BufferEncoding; replacePackageImportsWithPackageName?: boolean; pkg: PackageJSON; title?: string; } /** Show all files from the example directory defined in package.json.² */ export declare const ExamplesFromPkg: Component<Props>; export {};