mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-11-07 08:39:03 +05:30
29 lines
612 B
TypeScript
29 lines
612 B
TypeScript
import { Action as ReduxPopup } from 'redux';
|
|
import { PopupConfig } from './reducer';
|
|
|
|
interface PopupCreateAction extends ReduxPopup {
|
|
type: 'POPUP_CREATE';
|
|
payload: PopupConfig;
|
|
}
|
|
|
|
export function create(popup: PopupConfig): PopupCreateAction {
|
|
return {
|
|
type: 'POPUP_CREATE',
|
|
payload: popup,
|
|
};
|
|
}
|
|
|
|
interface PopupDestroyAction extends ReduxPopup {
|
|
type: 'POPUP_DESTROY';
|
|
payload: PopupConfig;
|
|
}
|
|
|
|
export function destroy(popup: PopupConfig): PopupDestroyAction {
|
|
return {
|
|
type: 'POPUP_DESTROY',
|
|
payload: popup,
|
|
};
|
|
}
|
|
|
|
export type Action = PopupCreateAction | PopupDestroyAction;
|