在Redux异步操作的上下文中,我需要传递一个对象并检索带有一些后缀的每个键。这是一个示例:
const actions = createAsyncActions('MY_ACTIONS')
该函数应将输入字符串用作主对象键并为其添加后缀,因此操作的结果类型为:
{
MY_ACTIONS: string
MY_ACTIONS_PENDING: string
MY_ACTIONS_FULFILLED: string
MY_ACTIONS_REJECTED: string
}