我是Typescript的新手,不知道是否可以在类型定义中使用动态键。
例如,下面是我正在努力的类型:
export interface IQuery {
locale?: string;
include?: number;
limit?: number;
select?: string;
skip?: number;
order?: string;
// all keys starting with "fields." (e.g. "fields.name[ne]") should be a string
'fields.*'?: string;
}
先谢谢你了!
1条答案
按热度按时间5f0d552i1#
使用template literal types: