mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-29 23:58:06 +01:00
15 lines
342 B
TypeScript
15 lines
342 B
TypeScript
|
import { Action } from 'redux';
|
||
|
import * as actionConstants from '../../../store/actionConstants';
|
||
|
|
||
|
export function showSelectActionModal(): Action {
|
||
|
return {
|
||
|
type: actionConstants.SELECT_ACTION_MODAL_OPEN,
|
||
|
};
|
||
|
}
|
||
|
|
||
|
export function hideSelectActionModal(): Action {
|
||
|
return {
|
||
|
type: actionConstants.SELECT_ACTION_MODAL_CLOSE,
|
||
|
};
|
||
|
}
|