botbuilder
Version:
Bot Builder is a framework for building rich bots on virtually any platform.
14 lines (11 loc) • 320 B
text/typescript
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
/**
* Defines values for handoff event names.
*/
export class HandoffEventNames {
static readonly InitiateHandoff: string = 'handoff.initiate';
static readonly HandoffStatus: string = 'handoff.status';
}