UNPKG

fb-test-module

Version:

How to use: ``` import {store, getStore} from 'fb-test-module'; conf.DialogramApi = "API_BASE_URL"; conf.Platform = "mobile"; //use "web" if you are on webApp getStore(); //Inject store in your provider ``` and you'r readyt to go. # Base ## Act

10 lines (8 loc) 206 B
export default class Config { public Platform: string = ""; public DialogramApi: string = ""; public VideoApi: string = ""; constructor() { } } export var conf = new Config();