Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | 6x 6x 1x 1x | import {
GenericReleasesAction,
ReleasesReduxState,
} from "../../../types/releaseTypes";
export const OPEN_MODAL = "OPEN_MODAL";
export const CLOSE_MODAL = "CLOSE_MODAL";
export type OpenModalAction = GenericReleasesAction<
typeof OPEN_MODAL,
Partial<ReleasesReduxState["modal"]>
>;
export type CloseModalAction = GenericReleasesAction<typeof CLOSE_MODAL, never>;
export type ModalAction = OpenModalAction | CloseModalAction;
export function openModal(
payload: Partial<ReleasesReduxState["modal"]>
): OpenModalAction {
return {
type: OPEN_MODAL,
payload,
};
}
export function closeModal(): CloseModalAction {
return {
type: CLOSE_MODAL,
};
}
|