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

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