UNPKG

typedoc-plugin-sphinx

Version:

A plugin for TypeDoc that enables TypeScript API documentation to be generated in Sphinx's reStructuredText.

7 lines (6 loc) 408 B
import { DeclarationReflection, ReflectionType, SignatureReflection } from 'typedoc'; declare type Collapse = 'object' | 'function' | 'all' | 'none'; export default function (): void; export declare function getReflectionType(model: DeclarationReflection | ReflectionType, collapse: Collapse): string; export declare function getFunctionType(modelSignatures: SignatureReflection[]): string; export {};