UNPKG

@promptbook/remote-server

Version:

Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action

15 lines (14 loc) 630 B
/** * Chat effects system exports * * @packageDocumentation */ export { ChatEffectsSystem } from './ChatEffectsSystem'; export { ConfettiEffect } from './components/ConfettiEffect'; export { HeartsEffect } from './components/HeartsEffect'; export { defaultEffectConfigs } from './configs/defaultEffectConfigs'; export type { ChatEffect } from './types/ChatEffect'; export type { ChatEffectConfig } from './types/ChatEffectConfig'; export type { ChatEffectsSystemProps } from './types/ChatEffectsSystemProps'; export type { ChatEffectType } from './types/ChatEffectType'; export { detectEffects } from './utils/detectEffects';