blob: ff66aa66ea9b953127f316da6b0cffe2d5a05755 [file] [log] [blame]
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[];
}