mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
16 lines
624 B
TypeScript
16 lines
624 B
TypeScript
// Type definitions for socketio-wildcard 2.0
|
|
// Project: https://github.com/hden/socketio-wildcard
|
|
// Definitions by: BendingBender <https://github.com/BendingBender>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/// <reference types="socket.io-client" />
|
|
import SocketIO = require("socket.io");
|
|
|
|
import EventEmitter = NodeJS.EventEmitter;
|
|
import Socket = SocketIO.Socket;
|
|
import ClientSocket = SocketIOClient.Socket;
|
|
|
|
export = sioWildcard;
|
|
|
|
declare function sioWildcard(emitterCtor?: { prototype: typeof EventEmitter.prototype }): (socket: Socket | ClientSocket, next?: (err?: any) => void) => void;
|