UNPKG

414 BTypeScriptView Raw
1/**
2 * Copyright (c) Microsoft Corporation. All rights reserved.
3 * Licensed under the MIT License.
4 */
5export interface ICLOptions {
6 botPort: any;
7 LUIS_AUTHORING_KEY: string | undefined;
8 LUIS_SUBSCRIPTION_KEY: string | undefined;
9 APIM_SUBSCRIPTION_KEY: string | undefined;
10 CONVERSATION_LEARNER_SERVICE_URI: string;
11 CONVERSATION_LEARNER_UI_PORT: number;
12 SESSION_MAX_TIMEOUT?: number;
13}