'use client'; import type { ApiEndpoint } from '../../../../types'; import { ParamGroup } from './ParamGroup'; interface ParametersProps { pathParams: NonNullable; queryParams: NonNullable; } /** Combined path + query parameters block. Each group renders only * when non-empty; when both are empty the parent should not render * the Section at all (we check up-stream so the Section badge shows a * real count). */ export function Parameters({ pathParams, queryParams }: ParametersProps) { return (
); }