@telia-ace/widget-conversation-flamingo 1.1.52-rc.1 → 1.1.52-rc.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,21 +0,0 @@
1
- import { BehaviorSubject, Observable } from 'rxjs';
2
- import { ConversationEntry } from './conversation-entry';
3
- import { ConversationProvider } from './conversation-provider';
4
- import Conversation from '../conversation';
5
- import { ConversationPlatform } from '../conversation-platform';
6
- export declare class ConversationSessionState {
7
- id: string;
8
- component: Conversation;
9
- private platform;
10
- entries$: BehaviorSubject<ConversationEntry[]>;
11
- private kill$;
12
- private provider?;
13
- private isTyping$;
14
- constructor(id: string, component: Conversation, platform: ConversationPlatform);
15
- private write;
16
- entries(): Observable<ConversationEntry[]>;
17
- setProvider(provider: ConversationProvider, options?: Record<string, any>): void;
18
- handover(providerKey: string, handoverOptions?: Record<string, any>): Observable<void>;
19
- addEntryRemoveHandler(entry: ConversationEntry): void;
20
- isTyping(): Observable<boolean>;
21
- }