UNPKG

silvie

Version:

Typescript Back-end Framework

10 lines (9 loc) 333 B
import SocketNamespace from "../namespace"; declare class SocketServer { io: any; namespaces: SocketNamespace[]; init(HTTPServer: any, namespaces: SocketNamespace[], instanceCallback?: any): void; registerNamespace(...namespaces: SocketNamespace[]): void; } declare const server: SocketServer; export default server;