@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 +1 -1
- package/build/index.js +1 -1
- package/package.json +1 -1
- package/package.publish.json +1 -1
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;
|