'use client'; import type { ApiEndpoint } from '../../../../types'; type Param = NonNullable[number]; interface ParamRowProps { param: Param; } /** Single parameter row. Name + required marker + type + (optional) * description. Wrapped in ``
`` rather than a table row so the * list degrades to a stack on narrow widths without losing semantics. */ export function ParamRow({ param }: ParamRowProps) { return (
{param.name} {param.required && ( * )} {param.type}
{param.description && (

{param.description}

)}
); }