Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Node/core/lib/botbuilder.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//=============================================================================
//=============================================================================
//
// INTERFACES
//
Expand Down Expand Up @@ -1087,7 +1087,7 @@ export class Session {
/**
* Ends the current dialog and optionally returns a result to the dialogs parent.
*/
endDialogWithResult(result?: IDialogResult<any>): Session;
endDialogWithResult<T>(result?: IDialogResult<T>): Session;

/**
* Cancels an existing dialog and optionally starts a new one it its place. Unlike [endDialog()](#enddialog)
Expand Down Expand Up @@ -2237,4 +2237,4 @@ export class BotConnectorBot extends Dialog {
/** __DEPRECATED__ use [UniversalBot](/en-us/node/builder/chat-reference/classes/_botbuilder_d_.universalbot) and a [ConsoleConnector](/en-us/node/builder/chat-reference/classes/_botbuilder_d_.consoleconnector) instead. */
export class TextBot extends Dialog {
replyReceived(session: Session, recognizeResult?: IRecognizeResult): void;
}
}