我有一个类似下面的对象
export const appErrorTemplate = {
NO_APP : {
template : 'Unable to initialize #{0}()!',
code : 'no-app'
},
NO_REQ_FOUND : {
template : '#{0}() requires \'#{1}\' to process!',
code : 'no-required-found'
},
MISMATH : {
template : '#{0}() required #{1} but \'#{2}\' found!',
code : 'mismatch'
},
NOT_SATISFY : {
template : 'Given parameter on #{0}() does not satisfied #{1} constrains',
code : 'not-satisfy'
},
UNKNOWN : {
template : 'Something went wrong!',
code : 'unknown'
}
};
如何定义像对象这样的数据类型,该对象上具有对象数组,每个对象都是字符串,字符串
答案 0 :(得分:1)
看起来您没有数组,但是对象具有一组属性相同的可变属性。可以用字符串index signature来描述。
type AppErrorTemplateType = {
[name: string]: {
template: string,
code: string
}
};