import { EntityAction, EntityName, ExtraActionProps } from './types' export const loadAction = ( entity: EntityName, extra: ExtraActionProps ): EntityAction => ({ entity, extra, type: 'GET_FROM_API', })