revbits-cip-integration
Version:
This package will integrate CIP with any product
15 lines (14 loc) • 638 B
TypeScript
import { CIP_OPTIONS, PLATFORM } from './interfaces/types.type';
import { BaseCIP } from './base.cip';
import { SOCKET_CALLBACK } from './interfaces/socket.interface';
export declare class CIP extends BaseCIP {
cipBaseUrl: string;
cipSocketPostfix: string;
platform: PLATFORM;
platformPrivKey: string;
options: CIP_OPTIONS;
socketCallback: SOCKET_CALLBACK | null | undefined;
constructor(cipBaseUrl: string, cipSocketPostfix: string, platform: PLATFORM, platformPrivKey: string, options: CIP_OPTIONS, socketCallback: SOCKET_CALLBACK | null | undefined);
private eventCallback;
private connectSocket;
}