@microsoft/teams-ai
Version:
SDK focused on building AI based applications for Microsoft Teams.
15 lines • 529 B
TypeScript
/**
* @module teams-ai
*/
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
import { TurnContext } from 'botbuilder-core';
import { TurnState } from '../TurnState';
/**
* @private
* @returns {Function} An async function that logs an error and returns StopCommandName.
*/
export declare function unknown<TState extends TurnState = TurnState>(): (_context: TurnContext, _state: TState, _data: any, action?: string) => Promise<string>;
//# sourceMappingURL=Unknown.d.ts.map