mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
21 lines
419 B
TypeScript
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;
|
|
}
|
|
}
|