msbot
Version:
MSBot command line tool for manipulating Microsoft Bot Framework .bot files
10 lines (9 loc) • 317 B
TypeScript
/**
* Copyright(c) Microsoft Corporation.All rights reserved.
* Licensed under the MIT License.
*/
import { IConnectedService } from 'botframework-config';
export interface ExportOptions {
download: boolean;
progress?: (service: IConnectedService, command: string, index: number, total: number) => void;
}