/** * Created by MeePwn * https://github.com/maybewaityou * * description: * */ import { ViewModel } from 'mario-architecture-components'; import { actions, actionCreator, createAction, IAction } from 'mario-meditation'; // import { } from '../actions/index'; export interface IModel { } export interface IHandlers { } export interface IViewModelProps extends IModel, IHandlers { navigation: any; dispatch: (action: IAction) => any; } export default class extends ViewModel { public model = () => ({ }) public handlers = () => ({ }) }