MCPcopy
hub / github.com/clauderic/dnd-kit / ParamFieldProps

Interface ParamFieldProps

apps/docs/src/components/ParamField.tsx:5–18  ·  view source on GitHub ↗

* Lightweight ParamField + ParamHead. Zero @mintlify/components dependency.

Source from the content-addressed store, hash-verified

3 */
4
5interface ParamFieldProps {
6 /**
7 * The parameter or property name. Mintlify's `<ParamField>` uses `path`,
8 * while `<ResponseField>` uses `name` — both are accepted here so the
9 * same component can render input arguments and output properties.
10 */
11 path?: string;
12 name?: string;
13 type?: string;
14 required?: boolean;
15 default?: string;
16 deprecated?: boolean;
17 children?: React.ReactNode;
18}
19
20function InfoPill({ children, prefix }: { children: React.ReactNode; prefix?: string }) {
21 return (

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected