UNPKG

msbot

Version:

MSBot command line tool for manipulating Microsoft Bot Framework .bot files

13 lines (12 loc) 432 B
/** * Copyright(c) Microsoft Corporation.All rights reserved. * Licensed under the MIT License. */ import { IFileService, ServiceType } from '../schema'; import { ConnectedService } from './connectedService'; export declare class FileService extends ConnectedService implements IFileService { readonly type: ServiceType; filePath: string; constructor(source?: IFileService); toJSON(): IFileService; }