1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/frontend/app/model/network.service.ts
2016-03-12 22:19:24 +01:00

21 lines
419 B
TypeScript

///<reference path="../../../typings/tsd.d.ts"/>
import * as io from 'socket.io-client';
import {Injectable} from 'angular2/core';
import {OnInit} from "angular2/core";
@Injectable()
export class NetworkService implements OnInit{
private _socketIO: SocketIOClient.Socket;
ngOnInit() {
this._socketIO = io();
}
get socketIO():SocketIOClient.Socket {
return this._socketIO;
}
}