1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-07-05 22:32:33 +00:00
trezor-wallet/src/js/flowtype/index.js
Szymon Lesisz 8ed54612e8 bundle
2018-03-08 17:10:53 +01:00

8 lines
261 B
JavaScript

/* @flow */
'use strict';
export type Dispatch = (action: Action | ThunkAction | PromiseAction) => any;
export type GetState = () => State;
export type ThunkAction = (dispatch: Dispatch, getState: GetState) => any;
export type PromiseAction = Promise<Action>;