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

17 lines (16 loc) 389 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class PayloadType { constructor(data, meta) { this.data = data; this.meta = meta; } } exports.PayloadType = PayloadType; class ActionType { constructor(type, payload) { this.type = type; this.payload = payload; } } exports.ActionType = ActionType;