@rkmodules/rules 0.0.96 → 0.0.97
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/dist/index.cjs.js +7 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +7 -2
- package/dist/index.esm.js.map +1 -1
- package/dist/lib/DataTree/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -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 getBranches<T>(tree: Tree<T>): T[][];
|
|
41
42
|
export declare function getPaths<T>(tree: Tree<T>): string[];
|
|
42
43
|
/**
|
|
43
44
|
* 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
|