UNPKG

msbot

Version:

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

13 lines (12 loc) 426 B
/** * Copyright(c) Microsoft Corporation.All rights reserved. * Licensed under the MIT License. */ import { IConnectedService, ServiceType } from '../schema'; export declare abstract class ConnectedService implements IConnectedService { id: string; name: string; readonly abstract type: ServiceType; protected constructor(source?: IConnectedService); abstract toJSON(): IConnectedService; }