typedoc-plugin-sphinx
Version:
A plugin for TypeDoc that enables TypeScript API documentation to be generated in Sphinx's reStructuredText.
8 lines (7 loc) • 547 B
TypeScript
import { DeclarationReflection, ParameterReflection, SignatureReflection } from 'typedoc';
export declare function formatContents(contents: string): string;
export declare function escapeChars(str: string): string;
export declare function memberSymbol(reflection: DeclarationReflection | ParameterReflection | SignatureReflection): "▸" | "Ƭ" | "▪" | "•";
export declare function spaces(length: number): string;
export declare function stripComments(str: string): string;
export declare function stripLineBreaks(str: string): string;