/*********************************************************************
*
* $Id: yocto_api_nodejs.ts 62445 2024-09-04 09:35:31Z seb $
*
* High-level programming interface, common to all modules
*
* - - - - - - - - - License information: - - - - - - - - -
*
* Copyright (C) 2011 and beyond by Yoctopuce Sarl, Switzerland.
*
* Yoctopuce Sarl (hereafter Licensor) grants to you a perpetual
* non-exclusive license to use, modify, copy and integrate http
* file into your software for the sole purpose of interfacing
* with Yoctopuce products.
*
* You may reproduce and distribute copies of this file in
* source or object form, as long as the sole purpose of this
* code is to interface with Yoctopuce products. You must retain
* this notice in the distributed source file.
*
* You should refer to Yoctopuce General Terms and Conditions
* for additional information regarding your rights and
* obligations.
*
* THE SOFTWARE AND DOCUMENTATION ARE PROVIDED "AS IS" WITHOUT
* WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING
* WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY, FITNESS
* FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO
* EVENT SHALL LICENSOR BE LIABLE FOR ANY INCIDENTAL, SPECIAL,
* INDIRECT OR CONSEQUENTIAL DAMAGES, LOST PROFITS OR LOST DATA,
* COST OF PROCUREMENT OF SUBSTITUTE GOODS, TECHNOLOGY OR
* SERVICES, ANY CLAIMS BY THIRD PARTIES (INCLUDING BUT NOT
* LIMITED TO ANY DEFENSE THEREOF), ANY CLAIMS FOR INDEMNITY OR
* CONTRIBUTION, OR OTHER SIMILAR COSTS, WHETHER ASSERTED ON THE
* BASIS OF CONTRACT, TORT (INCLUDING NEGLIGENCE), BREACH OF
* WARRANTY, OR OTHERWISE.
*
*********************************************************************/
///
///
export * from "./yocto_api.js";
import { _YY_UrlInfo, YAPIContext, YGenericHub, YGenericSSDPManager, YHubEngine, YSystemEnv, YUnhandledPromiseRejectionCallback } from "./yocto_api.js";
import 'process';
import * as dgram from 'dgram';
import * as http from 'http';
import WebSocket from 'ws';
/**
* System environment definition, for use with Node.js libraries
*/
export declare class YSystemEnvNodeJs extends YSystemEnv {
isNodeJS: boolean;
hasSSDP: boolean;
hookUnhandledRejection(handler: YUnhandledPromiseRejectionCallback): void;
getWebSocketEngine(hub: YGenericHub, runtime_urlInfo: _YY_UrlInfo): YHubEngine | null;
getHttpEngine(ohub: YGenericHub, runtime_urlInfo: _YY_UrlInfo, firstInfoJson: any): YHubEngine | null;
getWebSocketCallbackEngine(hub: YGenericHub, runtime_urlInfo: _YY_UrlInfo, ws: WebSocket): YHubEngine | null;
getHttpCallbackEngine(hub: YGenericHub, runtime_urlInfo: _YY_UrlInfo, incomingMessage: http.IncomingMessage, serverResponse: http.ServerResponse): YHubEngine | null;
getSSDPManager(obj_yapi: YAPIContext): YGenericSSDPManager | null;
loadfile(file: string | Blob): Promise;
downloadfile(url: string, yapi: YAPIContext): Promise;
downloadRemoteCertificate(urlinfo: _YY_UrlInfo): Promise;
}
interface _YY_SSDPSockets {
[iface: string]: dgram.Socket;
}
export declare class YNodeSSDPManager extends YGenericSSDPManager {
_request_sock: _YY_SSDPSockets;
_notify_sock: _YY_SSDPSockets;
ySSDPOpenSockets(): Promise;
ySSDPCloseSockets(): Promise;
ySSDPSendPacket(msg: string, port: number, ipaddr: string): Promise;
}