Matteo Scandolo | 43ffb67 | 2016-12-02 14:49:58 -0800 | [diff] [blame] | 1 | /// <reference path="../../../typings/index.d.ts"/> |
2 | |||||
3 | export interface IAppConfig { | ||||
4 | apiEndpoint: string; | ||||
5 | websocketClient: string; | ||||
6 | } | ||||
7 | |||||
8 | export const AppConfig: IAppConfig = { | ||||
Matteo Scandolo | 3b3b3b4 | 2016-12-15 17:31:53 -0800 | [diff] [blame] | 9 | apiEndpoint: '/api', |
10 | websocketClient: '' | ||||
Matteo Scandolo | 43ffb67 | 2016-12-02 14:49:58 -0800 | [diff] [blame] | 11 | }; |