UNPKG

angular2-sails-socketio

Version:

An angular2 module for using the sails socket.io api

13 lines (11 loc) 317 B
import { NgModule, ModuleWithProviders } from "@angular/core"; import { SocketIOConfig } from "./socketio.config"; @NgModule({}) export class SocketIOModule { static forRoot(): ModuleWithProviders { return { ngModule: SocketIOModule, providers: [SocketIOConfig] } } }