import { Action } from 'lib/types/interfaces';



export const showGlobalLogin = () => ({
	type: '@@globalHelper::SHOW_GLOBAL_LOGIN'
}) as Action;


export const hideGlobalLogin = () => ({
	type: '@@globalHelper::HIDE_GLOBAL_LOGIN'
}) as Action;


export const showedGlobalLogin = () => ({
	type: '@@globalHelper::SHOWED_GLOBAL_LOGIN'
}) as Action;


export const hidGlobalLogin = () => ({
	type: '@@globalHelper::HID_GLOBAL_LOGIN'
}) as Action;



