@posx/core 5.5.252 → 5.5.253

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/build/index.d.ts CHANGED
@@ -5429,7 +5429,7 @@ declare module '@posx/core/utils/autoquery.utils' {
5429
5429
  import { Operator, OperatorValueMap, SortOrder } from '@posx/core/types/auto.query.type';
5430
5430
  export class QueryBuilder<T> {
5431
5431
  private params;
5432
- addParam<K extends keyof T, O extends Operator<T[K]>>(property: K, operator: O, value: OperatorValueMap[O]): this;
5432
+ addParam<K extends keyof T, O extends Operator<T[K]>>(property: K, operator: O, value: OperatorValueMap<T[K]>[O]): this;
5433
5433
  addRawParam(key: string, value: string): this;
5434
5434
  includeTotal(flag: boolean): this;
5435
5435
  skip(skip: number): this;