@fncts/schema 0.0.1

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/_src/global.ts ADDED
@@ -0,0 +1,8 @@
1
+ /**
2
+ * @tsplus global
3
+ */
4
+ import type {} from "@fncts/base/global";
5
+ /**
6
+ * @tsplus global
7
+ */
8
+ import type { HKT } from "@fncts/typelevel/HKT";
package/_src/index.ts ADDED
File without changes
package/global.d.ts ADDED
@@ -0,0 +1,9 @@
1
+ /**
2
+ * @tsplus global
3
+ */
4
+ import type {} from "@fncts/base/global";
5
+ /**
6
+ * @tsplus global
7
+ */
8
+ import type { HKT } from "@fncts/typelevel/HKT";
9
+ export {};
package/index.d.ts ADDED
@@ -0,0 +1 @@
1
+ export {};
package/package.json ADDED
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "@fncts/schema",
3
+ "version": "0.0.1",
4
+ "dependencies": {
5
+ "@fncts/base": "0.0.22",
6
+ "@fncts/typelevel": "0.0.15"
7
+ },
8
+ "exports": {
9
+ "./*": {
10
+ "import": "./_mjs/*.mjs",
11
+ "require": "./_cjs/*.cjs"
12
+ },
13
+ ".": {
14
+ "import": "./_mjs/index.mjs",
15
+ "require": "./_cjs/index.cjs"
16
+ }
17
+ },
18
+ "publishConfig": {
19
+ "access": "public"
20
+ }
21
+ }