react-application-core
Version:
A react-based application core for the business applications.
12 lines (11 loc) • 387 B
TypeScript
import { AnyT } from '../../definitions.interface';
import { BaseChannel } from '../base-channel.service';
export declare class SocketChannel extends BaseChannel {
protected static readonly logger: import("ts-smart-logger").ILogger;
/**
* @stable [08.11.2020]
* @param ip
* @param config
*/
connect(ip: string, config?: AnyT): Promise<void>;
}