DocumentationTypecomponent

DocumentationType({ members }: DocumentationTypeProps): ReactNode
ParamType
propsDocumentationTypeProps
Props for DocumentationType — the union members to render (see splitType()). required
    .membersreadonly string[]
Union members to render — one linked token each, stacked on their own line. required readonly
Return
ReactNode

Render a documentation table's Type column — one linked token per union member, each stacked on its own line.

  • Each member links to its documented page via TreeLink (exact-match only; compound or builtin types stay plain text).

Examples

<DocumentationType members={["Schemas<T>", "DataSchema<T>"]} />