UNPKG

506 BTypeScriptView Raw
1import { IAddress } from 'botbuilder';
2export interface IConfig {
3 /**
4 * timeout in milliseconds before a BotTester runner will fail a test (when not overriden)
5 */
6 timeout?: number;
7 /**
8 * default address bot will use for all communication (when not overriden)
9 */
10 defaultAddress?: IAddress;
11}
12/**
13 * default value for timeout. If config/options are set to this value, no timeout will be used
14 */
15export declare const NO_TIMEOUT = -1;
16export declare const config: IConfig;