docusaurus-plugin-typedoc-api
Version:
Docusaurus plugin that provides source code API documentation powered by TypeDoc.
12 lines • 508 B
TypeScript
import type { JSONOutput } from 'typedoc';
import type { TSDDeclarationReflection } from '../types';
export declare function extractDeclarationFromType(type?: JSONOutput.Reflection | JSONOutput.SomeType): TSDDeclarationReflection | undefined;
export interface TypeProps {
needsParens?: boolean;
type?: {
type: string;
value?: unknown;
};
}
export declare function Type({ needsParens, type: base }: TypeProps): import("react").JSX.Element | null;
//# sourceMappingURL=Type.d.ts.map