UNPKG

@e-group/redux-modules

Version:

eGroup team react-redux modules that share across projects.

8 lines (7 loc) 242 B
/** * Parse api action type to its method and processing type. * Example, * FETCH_GET_USER -> ['get', undefined] * FETCH_GET_USER_REQUEST -> ['get', 'request'] */ export default function getApiInfos(api: string): (string | undefined)[];