claritykit-svelte
Version:
A comprehensive Svelte component library focused on accessibility, ADHD-optimized design, developer experience, and full SSR compatibility
53 lines • 1.82 kB
TypeScript
import type { ChatMessage, ConceptCluster, RelatedContent, ConversationSummary } from './types.js';
type $$ComponentProps = {
messages?: ChatMessage[];
conceptClusters?: ConceptCluster[];
relatedContent?: RelatedContent[];
conversationSummary?: ConversationSummary;
currentMessageId?: string;
showClusters?: boolean;
showRelated?: boolean;
showSummary?: boolean;
showTags?: boolean;
maxClusters?: number;
maxRelated?: number;
class?: string;
};
interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> {
new (options: import('svelte').ComponentConstructorOptions<Props>): import('svelte').SvelteComponent<Props, Events, Slots> & {
$$bindings?: Bindings;
} & Exports;
(internal: unknown, props: Props & {
$$events?: Events;
$$slots?: Slots;
}): Exports & {
$set?: any;
$on?: any;
};
z_$$bindings?: Bindings;
}
declare const KnowledgeGraphEnhancements: $$__sveltets_2_IsomorphicComponent<$$ComponentProps, {
jumpToMessage: CustomEvent<{
messageId: string;
}>;
exploreCluster: CustomEvent<{
clusterId: string;
}>;
showSummary: CustomEvent<{
summaryId: string;
}>;
tagMessage: CustomEvent<{
messageId: string;
tags: string[];
}>;
linkMessages: CustomEvent<{
sourceId: string;
targetId: string;
relationType: string;
}>;
} & {
[evt: string]: CustomEvent<any>;
}, {}, {}, "">;
type KnowledgeGraphEnhancements = InstanceType<typeof KnowledgeGraphEnhancements>;
export default KnowledgeGraphEnhancements;
//# sourceMappingURL=KnowledgeGraphEnhancements.svelte.d.ts.map