From 5e1e9809a8e239f5a3cf2eb4689a2e44fa9c20dc Mon Sep 17 00:00:00 2001 From: Jesse Merhi <79823012+jesse-merhi@users.noreply.github.com> Date: Thu, 13 Aug 2026 15:42:30 +1000 Subject: [PATCH] fix(ui): keep inline invocation type private --- ui/src/pages/chat/components/chat-composer-inline-slash.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/pages/chat/components/chat-composer-inline-slash.ts b/ui/src/pages/chat/components/chat-composer-inline-slash.ts index 4ddff85c85e3..9b853c2198ed 100644 --- a/ui/src/pages/chat/components/chat-composer-inline-slash.ts +++ b/ui/src/pages/chat/components/chat-composer-inline-slash.ts @@ -4,7 +4,7 @@ import { type SlashCommandDef, } from "../../../lib/chat/commands.ts"; -export type InlineSlashArgumentInvocation = { +type InlineSlashArgumentInvocation = { command: SlashCommandDef; completion: InlineSlashCompletion; };