blob: 361db95f58d6ae3edb13c5dac5cb16cc8924227d [file] [log] [blame]
Matteo Scandolo43ffb672016-12-02 14:49:58 -08001/// <reference path="../../../typings/index.d.ts"/>
2
3export interface IAppConfig {
4 apiEndpoint: string;
5 websocketClient: string;
6}
7
8export const AppConfig: IAppConfig = {
Matteo Scandolo3b3b3b42016-12-15 17:31:53 -08009 apiEndpoint: '/api',
10 websocketClient: ''
Matteo Scandolo43ffb672016-12-02 14:49:58 -080011};