Function call line with a caret plus a signature popover underneath. The current parameter underlines in primary.
Requires shadcn/ui initialized. Run npx shadcn@latest init if you haven't.
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."
/>function greet(name: string): stringReturns a localized greeting for the given name.
@/lib/greet.tsWavy-underlined symbol above a type-hover card showing signature, one-line description, and source path.
1const user = createUser(name: "Ayşe", role: "admin");nameinlay parameter hints
Function call with muted parameter-name chips inlaid before each argument.
Compact jump-to-line input with a typed value, a blinking caret, and the total line count.
Autocomplete popup with a blinking caret up top and a dropdown listing kind-colored tiles, names, and type signatures.
function greet(name: string)Action row above a function signature showing references, implementations, and inline commands.
const greet = (name: string) => `Hello, ${name}!`;AI Suggestion caption above a code line with a solid prefix, italic muted ghost text, and a blinking caret.