@rkmodules/rules 0.0.123 → 0.0.124

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,2 @@
1
+ import { PrimitiveFunction } from "../../Engine";
2
+ export declare const duration: PrimitiveFunction;
@@ -0,0 +1,2 @@
1
+ import { PrimitiveFunction } from "../../Engine";
2
+ export declare const formatDate: PrimitiveFunction;
@@ -0,0 +1,3 @@
1
+ import { PrimitiveFunction } from "../../Engine";
2
+ declare const functions: Record<string, PrimitiveFunction>;
3
+ export default functions;
@@ -0,0 +1,2 @@
1
+ import { PrimitiveFunction } from "../../Engine";
2
+ export declare const isoDate: PrimitiveFunction;
@@ -0,0 +1,2 @@
1
+ import { PrimitiveFunction } from "../../Engine";
2
+ export declare const parseDate: PrimitiveFunction;
@@ -9,5 +9,6 @@ export declare const Lib: {
9
9
  Logic: Record<string, PrimitiveFunction>;
10
10
  IO: Record<string, PrimitiveFunction>;
11
11
  Json: Record<string, PrimitiveFunction>;
12
+ Date: Record<string, PrimitiveFunction>;
12
13
  };
13
14
  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.123",
3
+ "version": "0.0.124",
4
4
  "main": "dist/index.cjs.js",
5
5
  "module": "dist/index.esm.js",
6
6
  "types": "./dist/index.d.ts",