We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 233830a commit fd9ceefCopy full SHA for fd9ceef
src/directline.interface.ts
@@ -20,7 +20,7 @@ export interface Media {
20
thumbnailUrl?: string
21
}
22
23
-export interface UnknownMedia{
+export interface UnknownMedia {
24
contentType: string,
25
contentUrl: string,
26
name?: string,
@@ -235,9 +235,9 @@ export interface DirectLineOptions {
235
236
export interface IBotConnection {
237
connectionStatus$: BehaviorSubject<ConnectionStatus>,
238
+ referenceGrammarId?: string,
239
+ getSessionId?: () => Observable<string>
240
activity$: Observable<Activity>,
241
end(): void,
- referenceGrammarId?: string,
242
postActivity(activity: Activity): Observable<string>,
- getSessionId? : () => Observable<string>
243
-}
+}
0 commit comments