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

13 lines (12 loc) 333 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class Session { constructor(type, id, token, deviceName, user) { this.type = type; this.id = id; this.token = token; this.deviceName = deviceName; this.user = user; } } exports.Session = Session;