/opt/canhelp/node_modules/engine.io-client/build/cjs/transports
NameSizeModeActions
index.d.ts2450644editdlrm
index.js4310644editdlrm
polling-fetch.d.ts4540644editdlrm
polling-fetch.js20110644editdlrm
polling-xhr.d.ts25210644editdlrm
polling-xhr.js89520644editdlrm
polling-xhr.node.d.ts3850644editdlrm
polling-xhr.node.js19190644editdlrm
polling.d.ts11640644editdlrm
polling.js50030644editdlrm
websocket.d.ts11520644editdlrm
websocket.js50040644editdlrm
websocket.node.d.ts5550644editdlrm
websocket.node.js26190644editdlrm
webtransport.d.ts5850644editdlrm
webtransport.js37300644editdlrm
Edit: /opt/canhelp/node_modules/engine.io-client/build/cjs/transports/polling-fetch.d.ts (454B)
import { Polling } from "./polling.js"; /** * HTTP long-polling based on the built-in `fetch()` method. * * Usage: browser, Node.js (since v18), Deno, Bun * * @see https://developer.mozilla.org/en-US/docs/Web/API/fetch * @see https://caniuse.com/fetch * @see https://nodejs.org/api/globals.html#fetch */ export declare class Fetch extends Polling { doPoll(): void; doWrite(data: string, callback: () => void): void; private _fetch; }