Parameter Hints

Function call line with a caret plus a signature popover underneath. The current parameter underlines in primary.

greet()
greet(name: string, locale: Locale): string
Greet the user with a localized message.

Requires shadcn/ui initialized. Run npx shadcn@latest init if you haven't.

Import & use
import { Editor17 } from "@/components/beste/piece/editor17";

<Editor17
  fn="greet"
  params={[
    {
      "name": "name",
      "type": "string",
      "active": true
    },
    {
      "name": "locale",
      "type": "Locale"
    }
  ]}
  returnType="string"
  description="Greet the user with a localized message."
/>