@rkmodules/rules 0.0.67 → 0.0.69

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.
@@ -38,6 +38,7 @@ export declare function isSingleTon(value: Tree<any>): boolean;
38
38
  */
39
39
  export declare function broadCast<T>(value: T | T[] | Tree<T>): Tree<T>;
40
40
  export declare function getBranch<T>(tree: Tree<T>, path: string): T[] | void;
41
+ export declare function getPaths<T>(tree: Tree<T>): string[];
41
42
  /**
42
43
  * maps a tree, the tree branches are flatmapped, so if an array is returned for each item in the list, a flat list is returned
43
44
  * @param tree
@@ -0,0 +1,2 @@
1
+ import { PrimitiveFunction } from "../../Engine/types";
2
+ export declare const cartesianGroups: PrimitiveFunction;
@@ -0,0 +1,2 @@
1
+ import { PrimitiveFunction } from "../../Engine/types";
2
+ export declare const cosDeg: PrimitiveFunction;
@@ -0,0 +1,2 @@
1
+ import { PrimitiveFunction } from "../../Engine/types";
2
+ export declare const equalTo: PrimitiveFunction;
@@ -0,0 +1,2 @@
1
+ import { PrimitiveFunction } from "../../Engine/types";
2
+ export declare const modulo: PrimitiveFunction;
@@ -0,0 +1,2 @@
1
+ import { PrimitiveFunction } from "../../Engine/types";
2
+ export declare const pow: PrimitiveFunction;
@@ -0,0 +1,2 @@
1
+ import { PrimitiveFunction } from "../../Engine/types";
2
+ export declare const sinDeg: PrimitiveFunction;
@@ -0,0 +1,2 @@
1
+ import { PrimitiveFunction } from "../../Engine/types";
2
+ export declare const sqrt: PrimitiveFunction;
@@ -0,0 +1,2 @@
1
+ import { PrimitiveFunction } from "../../Engine/types";
2
+ export declare const tanDeg: PrimitiveFunction;
@@ -0,0 +1,2 @@
1
+ import { PrimitiveFunction } from "../../Engine";
2
+ export declare const simplifyTree: PrimitiveFunction;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rkmodules/rules",
3
- "version": "0.0.67",
3
+ "version": "0.0.69",
4
4
  "main": "dist/index.cjs.js",
5
5
  "module": "dist/index.esm.js",
6
6
  "types": "./dist/index.d.ts",