aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/types.ts
blob: d150bd8abafbd7160dc5b73e9b1d4e26a71ff8df (plain) (blame)
1
2
3
4
5
6
7
8
9
export enum ActionTypes {
    UPDATE_ETH_USD_PRICE,
    UPDATE_SELECTED_ASSET_AMOUNT,
}

export interface Action {
    type: ActionTypes;
    data?: any;
}