@rkmodules/rules 0.0.75 → 0.0.76

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.
@@ -0,0 +1,3 @@
1
+ import { PrimitiveFunction } from "../../Engine";
2
+ declare const primitives: Record<string, PrimitiveFunction>;
3
+ export default primitives;
@@ -0,0 +1,2 @@
1
+ import { PrimitiveFunction } from "../../Engine";
2
+ export declare const inputs: PrimitiveFunction;
@@ -0,0 +1,2 @@
1
+ import { PrimitiveFunction } from "../../Engine";
2
+ export declare const output: PrimitiveFunction;
@@ -6,5 +6,6 @@ export declare const Lib: {
6
6
  Sequence: Record<string, PrimitiveFunction>;
7
7
  Tree: Record<string, PrimitiveFunction>;
8
8
  Logic: Record<string, PrimitiveFunction>;
9
+ IO: Record<string, PrimitiveFunction>;
9
10
  };
10
11
  export declare const primitives: Record<string, PrimitiveFunction>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rkmodules/rules",
3
- "version": "0.0.75",
3
+ "version": "0.0.76",
4
4
  "main": "dist/index.cjs.js",
5
5
  "module": "dist/index.esm.js",
6
6
  "types": "./dist/index.d.ts",
@@ -1,2 +0,0 @@
1
- import { PrimitiveFunction } from "../Engine";
2
- export declare const inputs: PrimitiveFunction;
@@ -1,2 +0,0 @@
1
- import { PrimitiveFunction } from "../Engine";
2
- export declare const output: PrimitiveFunction;