DocumentationTypecomponent
DocumentationType({ members }: DocumentationTypeProps): ReactNode| Param | Type | |
|---|---|---|
props | DocumentationTypeProps | Props for DocumentationType — the union members to render (see splitType). required |
.members | readonly string[] | Union members to render — one linked token each, stacked on their own line. required readonly |
| Return | |
|---|---|
ReactNode | One TreeLink per member, separated by line breaks. |
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>"]} />