@rkmodules/rules 0.0.109 → 0.0.111

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.
@@ -13,6 +13,7 @@ export type NormalizedVarDef = {
13
13
  min?: number;
14
14
  max?: number;
15
15
  step?: number;
16
+ allowEmpty?: boolean;
16
17
  };
17
18
  export type VarDef = string | NormalizedVarDef;
18
19
  /**
@@ -0,0 +1,2 @@
1
+ import { PrimitiveFunction } from "../../Engine/types";
2
+ export declare const groupStats: PrimitiveFunction;
@@ -0,0 +1 @@
1
+ export declare function isNumber(...ns: any[]): boolean;
@@ -0,0 +1,2 @@
1
+ import { PrimitiveFunction } from "../../Engine/types";
2
+ export declare const getType: PrimitiveFunction;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rkmodules/rules",
3
- "version": "0.0.109",
3
+ "version": "0.0.111",
4
4
  "main": "dist/index.cjs.js",
5
5
  "module": "dist/index.esm.js",
6
6
  "types": "./dist/index.d.ts",