使用TypeScript将后缀添加到对象键吗?

时间:2018-11-15 10:48:11

标签: typescript redux

在Redux异步操作的上下文中,我需要传递一个对象并检索带有一些后缀的每个键。这是一个示例:

const actions = createAsyncActions('MY_ACTIONS')

该函数应将输入字符串用作主对象键并为其添加后缀,因此操作的结果类型为:

{
    MY_ACTIONS: string
    MY_ACTIONS_PENDING: string
    MY_ACTIONS_FULFILLED: string
    MY_ACTIONS_REJECTED: string
}

0 个答案:

没有答案