我将我的泛型类型定义为
interface IDictionary<TValue> {
[key: string|number]: TValue;
}
但是 TSLint 在抱怨。我应该如何定义一个可以作为键的对象索引类型?我也试过这些,但没有运气。
interface IDictionary<TKey, TValue> {
[key: TKey]: TValue;
}
interface IDictionary<TKey extends string|number, TValue> {
[key: TKey]: TValue;
}
type IndexKey = string | number;
interface IDictionary<TValue> {
[key: IndexKey]: TValue;
}
interface IDictionary<TKey extends IndexKey, TValue> {
[key: TKey]: TValue;
}
以上都不起作用。
那怎么办?
原文由 Robert Koritnik 发布,翻译遵循 CC BY-SA 4.0 许可协议
您可以通过使用
IDictionary<TValue> { [key: string]: TValue }
来实现这一点,因为数值将自动转换为字符串。这是一个使用示例:
如您所见,字符串和数字索引是可以互换的。