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