query-layers-expression 1.0.5 → 1.0.6

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
@@ -7,7 +7,7 @@ interface queryExpressionType {
7
7
  statusField?: any;
8
8
  qExpression?: any;
9
9
  }
10
- declare class QueryExpressionLayers {
10
+ declare class QueryExpressionLayers implements queryExpressionType {
11
11
  qValues?: [any?, any?, any?] | any;
12
12
  qFields?: [any?, any?, any?] | any;
13
13
  chartCategory?: any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "query-layers-expression",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "",
5
5
  "license": "ISC",
6
6
  "author": "Eiji Matsuzaki",
package/src/index.ts CHANGED
@@ -10,7 +10,7 @@ interface queryExpressionType {
10
10
  qExpression?: any;
11
11
  }
12
12
 
13
- class QueryExpressionLayers {
13
+ class QueryExpressionLayers implements queryExpressionType {
14
14
  qValues?: [any?, any?, any?] | any;
15
15
  qFields?: [any?, any?, any?] | any;
16
16
  chartCategory?: any;