File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11export type { BotProps } from './components/Bot' ;
22export type { BubbleProps } from './features/bubble/components/Bubble' ;
3+ export type { FullProps } from './features/full/components/Full' ;
4+ export type { BubbleTheme } from './features/bubble/types' ;
35//# sourceMappingURL=index.d.ts.map
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ declare const chatbot: {
55 onRequest ?: ( ( request : RequestInit ) => Promise < void > ) | undefined ;
66 chatflowConfig ?: Record < string , unknown > | undefined ;
77 observersConfig ?: import ( "./components/Bot" ) . observersConfigType | undefined ;
8- theme ?: import ( "./features/bubble/types " ) . BubbleTheme | undefined ;
8+ theme ?: import ( "." ) . BubbleTheme | undefined ;
99 } & {
1010 id ?: string | undefined ;
1111 } ) => void ;
@@ -15,7 +15,7 @@ declare const chatbot: {
1515 onRequest ?: ( ( request : RequestInit ) => Promise < void > ) | undefined ;
1616 chatflowConfig ?: Record < string , unknown > | undefined ;
1717 observersConfig ?: import ( "./components/Bot" ) . observersConfigType | undefined ;
18- theme ?: import ( "./features/bubble/types " ) . BubbleTheme | undefined ;
18+ theme ?: import ( "." ) . BubbleTheme | undefined ;
1919 } ) => void ;
2020 destroy : ( ) => void ;
2121} ;
Original file line number Diff line number Diff line change 11export type { BotProps } from './components/Bot' ;
22export type { BubbleProps } from './features/bubble/components/Bubble' ;
3+ export type { FullProps } from './features/full/components/Full' ;
4+ export type { BubbleTheme } from './features/bubble/types' ;
You can’t perform that action at this time.
0 commit comments