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
26 lines (25 loc) • 540 B
TypeScript
import { ApiType } from '../BaseType';
export declare const createSession: ({ email, password }: {
email: any;
password: any;
}) => {
type: ApiType;
payload: {
meta: {
entity: string;
method: string;
url: string;
data: {
"email": any;
"password": any;
};
};
};
};
export declare const removeSession: () => {
type: string;
payload: {
meta: {};
data: {};
};
};