jmash-core-mp 0.1.40 → 0.1.41

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.
@@ -27,6 +27,6 @@ export declare class EntryLayDict {
27
27
  export declare class CustomBizDict {
28
28
  values: Entry[];
29
29
  query: any;
30
- constructor(results: Entry[], query: any);
30
+ constructor(results: any, query: any);
31
31
  getValue(key: string | boolean): string;
32
32
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jmash-core-mp",
3
- "version": "0.1.40",
3
+ "version": "0.1.41",
4
4
  "private": false,
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
package/src/api/dicts.ts CHANGED
@@ -115,7 +115,7 @@ export class CustomBizDict {
115
115
  // 查询条件
116
116
  query: any;
117
117
 
118
- constructor(results: Entry[], query: any) {
118
+ constructor(results: any, query: any) {
119
119
  this.values.length = 0;
120
120
  this.values.push(...(results || []));
121
121
  this.query = query;