mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-04 18:29:39 +02:00
Getting ready for WebRTC
This commit is contained in:
parent
018f5d1f12
commit
132249f01a
310 changed files with 37290 additions and 661 deletions
29
node_modules/socket.io-client/build/cjs/index.d.ts
generated
vendored
Normal file
29
node_modules/socket.io-client/build/cjs/index.d.ts
generated
vendored
Normal file
|
@ -0,0 +1,29 @@
|
|||
import { Manager, ManagerOptions } from "./manager.js";
|
||||
import { Socket, SocketOptions } from "./socket.js";
|
||||
/**
|
||||
* Looks up an existing `Manager` for multiplexing.
|
||||
* If the user summons:
|
||||
*
|
||||
* `io('http://localhost/a');`
|
||||
* `io('http://localhost/b');`
|
||||
*
|
||||
* We reuse the existing instance based on same scheme/port/host,
|
||||
* and we initialize sockets for each namespace.
|
||||
*
|
||||
* @public
|
||||
*/
|
||||
declare function lookup(opts?: Partial<ManagerOptions & SocketOptions>): Socket;
|
||||
declare function lookup(uri?: string, opts?: Partial<ManagerOptions & SocketOptions>): Socket;
|
||||
/**
|
||||
* Protocol version.
|
||||
*
|
||||
* @public
|
||||
*/
|
||||
export { protocol } from "socket.io-parser";
|
||||
/**
|
||||
* Expose constructors for standalone build.
|
||||
*
|
||||
* @public
|
||||
*/
|
||||
export { Manager, ManagerOptions, Socket, SocketOptions, lookup as io, lookup as connect, lookup as default, };
|
||||
export { Fetch, NodeXHR, XHR, NodeWebSocket, WebSocket, WebTransport, } from "engine.io-client";
|
Loading…
Add table
Add a link
Reference in a new issue