UNPKG

@kitn.ai/ui

Version:

Framework-agnostic, Shadow-DOM web components for building AI chat interfaces — works in React, Vue, Angular, Svelte, or plain HTML. Authored in SolidJS.

5 lines (4 loc) 283 B
/** Append a suggestion; no-op when already present. Returns a new array. */ export declare function addSuggestion(suggestions: string[], s: string): string[]; /** Remove a suggestion by value. */ export declare function removeSuggestion(suggestions: string[], s: string): string[];