mirror of
https://github.com/trezor/trezor-wallet
synced 2025-07-05 22:32:33 +00:00
8 lines
261 B
JavaScript
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>; |