UNPKG

@makolabs/ripple

Version:

Simple Svelte 5 powered component library ✨

10 lines (9 loc) 307 B
interface ThinkingDisplayProps { content: string; isComplete?: boolean; isVisible?: boolean; class?: string; } declare const ThinkingDisplay: import("svelte").Component<ThinkingDisplayProps, {}, "">; type ThinkingDisplay = ReturnType<typeof ThinkingDisplay>; export default ThinkingDisplay;