msbot
Version:
MSBot command line tool for manipulating Microsoft Bot Framework .bot files
15 lines (14 loc) • 509 B
TypeScript
/**
* Copyright(c) Microsoft Corporation.All rights reserved.
* Licensed under the MIT License.
*/
import { IAzureBotService, ServiceType } from '../schema';
import { ConnectedService } from './connectedService';
export declare class AzureBotService extends ConnectedService implements IAzureBotService {
readonly type: ServiceType;
tenantId: string;
subscriptionId: string;
resourceGroup: string;
constructor(source?: IAzureBotService);
toJSON(): IAzureBotService;
}