UNPKG

jsx-readme

Version:

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

12 lines (11 loc) 283 B
/** * @packageDocumentation * @internal */ import { Repository } from "../../../PackageJSON"; interface OwnerAndRepo { owner: string; repo: string; } export declare function extractGithubOwnerAndRepo(repository?: Repository | string): OwnerAndRepo | undefined; export {};