incubed
Version:
Typescript-version of the incubed client
12 lines (11 loc) • 386 B
TypeScript
import Client from './Client';
export declare class HttpProvider {
IN3Client: Client;
host: string;
connected: boolean;
constructor(_host: string, options: {}, client: Client);
send(method: any, parameters: any): Promise<object>;
sendBatch(methods: any, moduleInstance: any): Promise<object[]>;
supportsSubscriptions(): boolean;
disconnect(): boolean;
}