我想知道我是否可以在方括号中解释type
道具:
type AxiosSUCCESS = {
+type: [string value with 'SUCCESS' suffix],
+payload: Object,
}
type AxiosFAILURE = {
+type: [string value with 'FAILURE' suffix],
+payload: Object,
}
我不确定它是否有助于类型检查,但至少会帮助开发人员理解。
答案 0 :(得分:0)
不,你不能。也许你会使用字面输入法呢? 例如:
type AxiosSUCCESS = {
+prefix: "SUCCESS",
+type: string,
+payload: {},
}