shelving
Version:
Toolkit for using data in JavaScript.
10 lines (9 loc) • 531 B
TypeScript
import type { ReactNode } from "react";
import type { DocumentationElementProps } from "../../util/element.js";
import { type AbsolutePath } from "../../util/path.js";
interface DocumentationCardProps extends DocumentationElementProps {
path: AbsolutePath;
}
/** Card renderer for a `tree-documentation` element — a summary card showing the heading, signatures, and description. */
export declare function DocumentationCard({ path, title, name, kind, description, signatures }: DocumentationCardProps): ReactNode;
export {};