iot-backend/software/flow/node_modules/engine.io/build/transports/index.d.ts

17 lines
365 B
TypeScript
Raw Normal View History

2023-02-22 17:26:41 +01:00
import { Polling as XHR } from "./polling";
import { WebSocket } from "./websocket";
declare const _default: {
polling: typeof polling;
websocket: typeof WebSocket;
};
export default _default;
/**
* Polling polymorphic constructor.
*
* @api private
*/
declare function polling(req: any): XHR;
declare namespace polling {
var upgradesTo: string[];
}