UNPKG

fumadocs-ui

Version:

The framework for building a documentation website in Next.js

24 lines 624 B
import type { ReactNode } from 'react'; export declare function Info({ children }: { children: ReactNode; }): ReactNode; interface ObjectType { /** * Additional description of the field */ description?: ReactNode; type: string; typeDescription?: ReactNode; /** * Optional link to the type */ typeDescriptionLink?: string; default?: string; required?: boolean; deprecated?: boolean; } export declare function TypeTable({ type }: { type: Record<string, ObjectType>; }): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=type-table.d.ts.map