import { Action } from 'lib/types/interfaces';



export const fetchManagedContent = () => ({
	type: '@@mc::FETCH'
}) as Action;


export const fetchedManagedContent = (data?) => ({
	type: '@@mc::FETCHED',
	...data
}) as Action;


export const failedFetchManagedContent = (error?) => ({
	type: '@@mc::FAILED_FETCH',
	...error
}) as Action;


