UNPKG

482 BPlain TextView Raw
1/**
2 * Copyright (c) Microsoft Corporation. All rights reserved.
3 * Licensed under the MIT License.
4 */
5export interface ICLOptions {
6 botPort: any
7
8 LUIS_AUTHORING_KEY: string | undefined
9 LUIS_SUBSCRIPTION_KEY: string | undefined
10 APIM_SUBSCRIPTION_KEY: string | undefined
11
12 // URL for Conversation Learner service
13 CONVERSATION_LEARNER_SERVICE_URI: string
14 CONVERSATION_LEARNER_UI_PORT: number
15
16 // Application settings
17 SESSION_MAX_TIMEOUT?: number
18}