我使用Dexie(当前版本2.0.4)在我的打字稿书面报告。现在,我想使用WhereClause.inAnyRange()并按如下所示提供参数options
options.includeLowers = true
options.includeUppers = true
的类型描述dexie.d.ts
仅包含定义没有第二参数:
inAnyRange(ranges: Array<IndexableTypeArrayReadonly>): Collection<T, Key>;
我应该如何正确提供options参数?