effect 2.0.0-next.1 → 2.0.0-next.10
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/Debug.d.ts +5 -0
- package/Debug.d.ts.map +1 -1
- package/Debug.js.map +1 -1
- package/Differ.d.ts +59 -5
- package/Differ.d.ts.map +1 -1
- package/Differ.js +10 -10
- package/Differ.js.map +1 -1
- package/Fiber.d.ts +49 -4
- package/Fiber.d.ts.map +1 -1
- package/Fiber.js +8 -8
- package/Fiber.js.map +1 -1
- package/FiberRefs.d.ts +19 -1
- package/FiberRefs.d.ts.map +1 -1
- package/FiberRefs.js +2 -2
- package/FiberRefs.js.map +1 -1
- package/Logger.d.ts +31 -0
- package/Logger.d.ts.map +1 -0
- package/Logger.js +29 -0
- package/Logger.js.map +1 -0
- package/Metric.d.ts +99 -9
- package/Metric.d.ts.map +1 -1
- package/Metric.js +18 -18
- package/Metric.js.map +1 -1
- package/Optic.d.ts +62 -0
- package/Optic.d.ts.map +1 -0
- package/Optic.js +70 -0
- package/Optic.js.map +1 -0
- package/README.md +1 -1
- package/Ref.d.ts +29 -2
- package/Ref.d.ts.map +1 -1
- package/Ref.js +4 -4
- package/Ref.js.map +1 -1
- package/Schedule.d.ts +39 -3
- package/Schedule.d.ts.map +1 -1
- package/Schedule.js +6 -6
- package/Schedule.js.map +1 -1
- package/_mjs/Debug.mjs +5 -0
- package/_mjs/Debug.mjs.map +1 -1
- package/_mjs/Differ.mjs +59 -10
- package/_mjs/Differ.mjs.map +1 -1
- package/_mjs/Fiber.mjs +49 -8
- package/_mjs/Fiber.mjs.map +1 -1
- package/_mjs/FiberRefs.mjs +19 -2
- package/_mjs/FiberRefs.mjs.map +1 -1
- package/_mjs/Logger.mjs +31 -0
- package/_mjs/Logger.mjs.map +1 -0
- package/_mjs/Metric.mjs +99 -18
- package/_mjs/Metric.mjs.map +1 -1
- package/_mjs/Optic.mjs +62 -0
- package/_mjs/Optic.mjs.map +1 -0
- package/_mjs/Ref.mjs +29 -4
- package/_mjs/Ref.mjs.map +1 -1
- package/_mjs/Schedule.mjs +39 -6
- package/_mjs/Schedule.mjs.map +1 -1
- package/_mjs/index.mjs +490 -1
- package/_mjs/index.mjs.map +1 -1
- package/index.d.ts +490 -1
- package/index.d.ts.map +1 -1
- package/index.js +7 -3
- package/index.js.map +1 -1
- package/package.json +6 -5
package/Debug.d.ts
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @since 2.0.0
|
|
3
|
+
*
|
|
4
|
+
* ```md
|
|
5
|
+
* - Docs: https://effect-ts.github.io/io/modules/Debug.ts.html
|
|
6
|
+
* - Module: "@effect/io/Debug"
|
|
7
|
+
* ```
|
|
3
8
|
*/
|
|
4
9
|
import { Debug, getCallTrace, nodeSourceMapExtractor, runtimeDebug, withCallTrace } from "@effect/io/Debug";
|
|
5
10
|
export {
|
package/Debug.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Debug.d.ts","sourceRoot":"","sources":["../../src/Debug.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"Debug.d.ts","sourceRoot":"","sources":["../../src/Debug.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AACH,OAAO,EAAE,KAAK,EAAE,YAAY,EAAE,sBAAsB,EAAE,YAAY,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAA;AAE3G,OAAO;AACL;;GAEG;AACH,KAAK;AACL;;GAEG;AACH,YAAY;AACZ;;GAEG;AACH,sBAAsB;AACtB;;GAEG;AACH,YAAY;AACZ;;GAEG;AACH,aAAa,EACd,CAAA"}
|
package/Debug.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Debug.js","mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"Debug.js","mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAQA","names":[],"sourceRoot":"","sources":["../../src/Debug.ts"],"sourcesContent":[null]}
|
package/Differ.d.ts
CHANGED
|
@@ -1,7 +1,61 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @since 2.0.0
|
|
3
|
+
*
|
|
4
|
+
* ```md
|
|
5
|
+
* - Docs: https://fp-ts.github.io/data/modules/Differ.ts.html
|
|
6
|
+
* - Module: "@fp-ts/data/Differ"
|
|
7
|
+
* ```
|
|
8
|
+
*/
|
|
9
|
+
import * as ChunkPatch from "@fp-ts/data/Differ/ChunkPatch";
|
|
10
|
+
import * as ContextPatch from "@fp-ts/data/Differ/ContextPatch";
|
|
11
|
+
import * as HashMapPatch from "@fp-ts/data/Differ/HashMapPatch";
|
|
12
|
+
import * as HashSetPatch from "@fp-ts/data/Differ/HashSetPatch";
|
|
13
|
+
import * as OrPatch from "@fp-ts/data/Differ/OrPatch";
|
|
1
14
|
export * from "@fp-ts/data/Differ";
|
|
2
|
-
export
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
15
|
+
export {
|
|
16
|
+
/**
|
|
17
|
+
* @since 2.0.0
|
|
18
|
+
*
|
|
19
|
+
* ```md
|
|
20
|
+
* - Docs: https://fp-ts.github.io/data/modules/Differ/ChunkPatch.ts.html
|
|
21
|
+
* - Module: "@fp-ts/data/Differ/ChunkPatch"
|
|
22
|
+
* ```
|
|
23
|
+
*/
|
|
24
|
+
ChunkPatch,
|
|
25
|
+
/**
|
|
26
|
+
* @since 2.0.0
|
|
27
|
+
*
|
|
28
|
+
* ```md
|
|
29
|
+
* - Docs: https://fp-ts.github.io/data/modules/Differ/ContextPatch.ts.html
|
|
30
|
+
* - Module: "@fp-ts/data/Differ/ContextPatch"
|
|
31
|
+
* ```
|
|
32
|
+
*/
|
|
33
|
+
ContextPatch,
|
|
34
|
+
/**
|
|
35
|
+
* @since 2.0.0
|
|
36
|
+
*
|
|
37
|
+
* ```md
|
|
38
|
+
* - Docs: https://fp-ts.github.io/data/modules/Differ/HashMapPatch.ts.html
|
|
39
|
+
* - Module: "@fp-ts/data/Differ/HashMapPatch"
|
|
40
|
+
* ```
|
|
41
|
+
*/
|
|
42
|
+
HashMapPatch,
|
|
43
|
+
/**
|
|
44
|
+
* @since 2.0.0
|
|
45
|
+
*
|
|
46
|
+
* ```md
|
|
47
|
+
* - Docs: https://fp-ts.github.io/data/modules/Differ/HashSetPatch.ts.html
|
|
48
|
+
* - Module: "@fp-ts/data/Differ/HashSetPatch"
|
|
49
|
+
* ```
|
|
50
|
+
*/
|
|
51
|
+
HashSetPatch,
|
|
52
|
+
/**
|
|
53
|
+
* @since 2.0.0
|
|
54
|
+
*
|
|
55
|
+
* ```md
|
|
56
|
+
* - Docs: https://fp-ts.github.io/data/modules/Differ/OrPatch.ts.html
|
|
57
|
+
* - Module: "@fp-ts/data/Differ/OrPatch"
|
|
58
|
+
* ```
|
|
59
|
+
*/
|
|
60
|
+
OrPatch };
|
|
7
61
|
//# sourceMappingURL=Differ.d.ts.map
|
package/Differ.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Differ.d.ts","sourceRoot":"","sources":["../../src/Differ.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"Differ.d.ts","sourceRoot":"","sources":["../../src/Differ.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,KAAK,UAAU,MAAM,+BAA+B,CAAA;AAC3D,OAAO,KAAK,YAAY,MAAM,iCAAiC,CAAA;AAC/D,OAAO,KAAK,YAAY,MAAM,iCAAiC,CAAA;AAC/D,OAAO,KAAK,YAAY,MAAM,iCAAiC,CAAA;AAC/D,OAAO,KAAK,OAAO,MAAM,4BAA4B,CAAA;AAErD,cAAc,oBAAoB,CAAA;AAElC,OAAO;AACL;;;;;;;GAOG;AACH,UAAU;AACV;;;;;;;GAOG;AACH,YAAY;AACZ;;;;;;;GAOG;AACH,YAAY;AACZ;;;;;;;GAOG;AACH,YAAY;AACZ;;;;;;;GAOG;AACH,OAAO,EACR,CAAA"}
|
package/Differ.js
CHANGED
|
@@ -11,6 +11,16 @@ var _exportNames = {
|
|
|
11
11
|
OrPatch: true
|
|
12
12
|
};
|
|
13
13
|
exports.OrPatch = exports.HashSetPatch = exports.HashMapPatch = exports.ContextPatch = exports.ChunkPatch = void 0;
|
|
14
|
+
var ChunkPatch = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@fp-ts/data/Differ/ChunkPatch"));
|
|
15
|
+
exports.ChunkPatch = ChunkPatch;
|
|
16
|
+
var ContextPatch = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@fp-ts/data/Differ/ContextPatch"));
|
|
17
|
+
exports.ContextPatch = ContextPatch;
|
|
18
|
+
var HashMapPatch = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@fp-ts/data/Differ/HashMapPatch"));
|
|
19
|
+
exports.HashMapPatch = HashMapPatch;
|
|
20
|
+
var HashSetPatch = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@fp-ts/data/Differ/HashSetPatch"));
|
|
21
|
+
exports.HashSetPatch = HashSetPatch;
|
|
22
|
+
var OrPatch = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@fp-ts/data/Differ/OrPatch"));
|
|
23
|
+
exports.OrPatch = OrPatch;
|
|
14
24
|
var _Differ = /*#__PURE__*/require("@fp-ts/data/Differ");
|
|
15
25
|
Object.keys(_Differ).forEach(function (key) {
|
|
16
26
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -23,16 +33,6 @@ Object.keys(_Differ).forEach(function (key) {
|
|
|
23
33
|
}
|
|
24
34
|
});
|
|
25
35
|
});
|
|
26
|
-
var ChunkPatch_1 = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@fp-ts/data/Differ/ChunkPatch"));
|
|
27
|
-
exports.ChunkPatch = ChunkPatch_1;
|
|
28
|
-
var ContextPatch_1 = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@fp-ts/data/Differ/ContextPatch"));
|
|
29
|
-
exports.ContextPatch = ContextPatch_1;
|
|
30
|
-
var HashMapPatch_1 = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@fp-ts/data/Differ/HashMapPatch"));
|
|
31
|
-
exports.HashMapPatch = HashMapPatch_1;
|
|
32
|
-
var HashSetPatch_1 = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@fp-ts/data/Differ/HashSetPatch"));
|
|
33
|
-
exports.HashSetPatch = HashSetPatch_1;
|
|
34
|
-
var OrPatch_1 = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@fp-ts/data/Differ/OrPatch"));
|
|
35
|
-
exports.OrPatch = OrPatch_1;
|
|
36
36
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
37
37
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
38
38
|
//# sourceMappingURL=Differ.js.map
|
package/Differ.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Differ.js","mappings":";;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"Differ.js","mappings":";;;;;;;;;;;;;AASA;AAA2D;AAC3D;AAA+D;AAC/D;AAA+D;AAC/D;AAA+D;AAC/D;AAAqD;AAErD;AAAA;EAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA;AAAkC;AAAA","names":[],"sourceRoot":"","sources":["../../src/Differ.ts"],"sourcesContent":[null]}
|
package/Fiber.d.ts
CHANGED
|
@@ -1,6 +1,51 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @since 2.0.0
|
|
3
|
+
*
|
|
4
|
+
* ```md
|
|
5
|
+
* - Docs: https://effect-ts.github.io/io/modules/Fiber.ts.html
|
|
6
|
+
* - Module: "@effect/io/Fiber"
|
|
7
|
+
* ```
|
|
8
|
+
*/
|
|
9
|
+
import * as Id from "@effect/io/Fiber/Id";
|
|
10
|
+
import * as RuntimeFlags from "@effect/io/Fiber/Runtime/Flags";
|
|
11
|
+
import * as RuntimeFlagsPatch from "@effect/io/Fiber/Runtime/Flags/Patch";
|
|
12
|
+
import * as Status from "@effect/io/Fiber/Status";
|
|
1
13
|
export * from "@effect/io/Fiber";
|
|
2
|
-
export
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
14
|
+
export {
|
|
15
|
+
/**
|
|
16
|
+
* @since 2.0.0
|
|
17
|
+
*
|
|
18
|
+
* ```md
|
|
19
|
+
* - Docs: https://effect-ts.github.io/io/modules/Fiber/Id.ts.html
|
|
20
|
+
* - Module: "@effect/io/Fiber/Id"
|
|
21
|
+
* ```
|
|
22
|
+
*/
|
|
23
|
+
Id,
|
|
24
|
+
/**
|
|
25
|
+
* @since 2.0.0
|
|
26
|
+
*
|
|
27
|
+
* ```md
|
|
28
|
+
* - Docs: https://effect-ts.github.io/io/modules/Fiber/Runtime/Flags.ts.html
|
|
29
|
+
* - Module: "@effect/io/Fiber/Runtime/Flags"
|
|
30
|
+
* ```
|
|
31
|
+
*/
|
|
32
|
+
RuntimeFlags,
|
|
33
|
+
/**
|
|
34
|
+
* @since 2.0.0
|
|
35
|
+
*
|
|
36
|
+
* ```md
|
|
37
|
+
* - Docs: https://effect-ts.github.io/io/modules/Fiber/Runtime/Flags/Patch.ts.html
|
|
38
|
+
* - Module: "@effect/io/Fiber/Runtime/Flags/Patch"
|
|
39
|
+
* ```
|
|
40
|
+
*/
|
|
41
|
+
RuntimeFlagsPatch,
|
|
42
|
+
/**
|
|
43
|
+
* @since 2.0.0
|
|
44
|
+
*
|
|
45
|
+
* ```md
|
|
46
|
+
* - Docs: https://effect-ts.github.io/io/modules/Fiber/Status.ts.html
|
|
47
|
+
* - Module: "@effect/io/Fiber/Status"
|
|
48
|
+
* ```
|
|
49
|
+
*/
|
|
50
|
+
Status };
|
|
6
51
|
//# sourceMappingURL=Fiber.d.ts.map
|
package/Fiber.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Fiber.d.ts","sourceRoot":"","sources":["../../src/Fiber.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"Fiber.d.ts","sourceRoot":"","sources":["../../src/Fiber.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,KAAK,EAAE,MAAM,qBAAqB,CAAA;AACzC,OAAO,KAAK,YAAY,MAAM,gCAAgC,CAAA;AAC9D,OAAO,KAAK,iBAAiB,MAAM,sCAAsC,CAAA;AACzE,OAAO,KAAK,MAAM,MAAM,yBAAyB,CAAA;AAEjD,cAAc,kBAAkB,CAAA;AAEhC,OAAO;AACL;;;;;;;GAOG;AACH,EAAE;AACF;;;;;;;GAOG;AACH,YAAY;AACZ;;;;;;;GAOG;AACH,iBAAiB;AACjB;;;;;;;GAOG;AACH,MAAM,EACP,CAAA"}
|
package/Fiber.js
CHANGED
|
@@ -10,6 +10,14 @@ var _exportNames = {
|
|
|
10
10
|
Status: true
|
|
11
11
|
};
|
|
12
12
|
exports.Status = exports.RuntimeFlagsPatch = exports.RuntimeFlags = exports.Id = void 0;
|
|
13
|
+
var Id = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Fiber/Id"));
|
|
14
|
+
exports.Id = Id;
|
|
15
|
+
var RuntimeFlags = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Fiber/Runtime/Flags"));
|
|
16
|
+
exports.RuntimeFlags = RuntimeFlags;
|
|
17
|
+
var RuntimeFlagsPatch = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Fiber/Runtime/Flags/Patch"));
|
|
18
|
+
exports.RuntimeFlagsPatch = RuntimeFlagsPatch;
|
|
19
|
+
var Status = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Fiber/Status"));
|
|
20
|
+
exports.Status = Status;
|
|
13
21
|
var _Fiber = /*#__PURE__*/require("@effect/io/Fiber");
|
|
14
22
|
Object.keys(_Fiber).forEach(function (key) {
|
|
15
23
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -22,14 +30,6 @@ Object.keys(_Fiber).forEach(function (key) {
|
|
|
22
30
|
}
|
|
23
31
|
});
|
|
24
32
|
});
|
|
25
|
-
var Id_1 = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Fiber/Id"));
|
|
26
|
-
exports.Id = Id_1;
|
|
27
|
-
var RuntimeFlags_1 = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Fiber/Runtime/Flags"));
|
|
28
|
-
exports.RuntimeFlags = RuntimeFlags_1;
|
|
29
|
-
var RuntimeFlagsPatch_1 = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Fiber/Runtime/Flags/Patch"));
|
|
30
|
-
exports.RuntimeFlagsPatch = RuntimeFlagsPatch_1;
|
|
31
|
-
var Status_1 = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Fiber/Status"));
|
|
32
|
-
exports.Status = Status_1;
|
|
33
33
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
34
34
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
35
35
|
//# sourceMappingURL=Fiber.js.map
|
package/Fiber.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Fiber.js","mappings":";;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"Fiber.js","mappings":";;;;;;;;;;;;AASA;AAAyC;AACzC;AAA8D;AAC9D;AAAyE;AACzE;AAAiD;AAEjD;AAAA;EAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA;AAAgC;AAAA","names":[],"sourceRoot":"","sources":["../../src/Fiber.ts"],"sourcesContent":[null]}
|
package/FiberRefs.d.ts
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @since 2.0.0
|
|
3
|
+
*
|
|
4
|
+
* ```md
|
|
5
|
+
* - Docs: https://effect-ts.github.io/io/modules/FiberRefs.ts.html
|
|
6
|
+
* - Module: "@effect/io/FiberRefs"
|
|
7
|
+
* ```
|
|
8
|
+
*/
|
|
9
|
+
import * as Patch from "@effect/io/FiberRefs/Patch";
|
|
1
10
|
export * from "@effect/io/FiberRefs";
|
|
2
|
-
export
|
|
11
|
+
export {
|
|
12
|
+
/**
|
|
13
|
+
* @since 2.0.0
|
|
14
|
+
*
|
|
15
|
+
* ```md
|
|
16
|
+
* - Docs: https://effect-ts.github.io/io/modules/FiberRefs/Patch.ts.html
|
|
17
|
+
* - Module: "@effect/io/FiberRefs/Patch"
|
|
18
|
+
* ```
|
|
19
|
+
*/
|
|
20
|
+
Patch };
|
|
3
21
|
//# sourceMappingURL=FiberRefs.d.ts.map
|
package/FiberRefs.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FiberRefs.d.ts","sourceRoot":"","sources":["../../src/FiberRefs.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAA;
|
|
1
|
+
{"version":3,"file":"FiberRefs.d.ts","sourceRoot":"","sources":["../../src/FiberRefs.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,KAAK,KAAK,MAAM,4BAA4B,CAAA;AAEnD,cAAc,sBAAsB,CAAA;AAEpC,OAAO;AACL;;;;;;;GAOG;AACH,KAAK,EACN,CAAA"}
|
package/FiberRefs.js
CHANGED
|
@@ -7,6 +7,8 @@ var _exportNames = {
|
|
|
7
7
|
Patch: true
|
|
8
8
|
};
|
|
9
9
|
exports.Patch = void 0;
|
|
10
|
+
var Patch = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/FiberRefs/Patch"));
|
|
11
|
+
exports.Patch = Patch;
|
|
10
12
|
var _FiberRefs = /*#__PURE__*/require("@effect/io/FiberRefs");
|
|
11
13
|
Object.keys(_FiberRefs).forEach(function (key) {
|
|
12
14
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -19,8 +21,6 @@ Object.keys(_FiberRefs).forEach(function (key) {
|
|
|
19
21
|
}
|
|
20
22
|
});
|
|
21
23
|
});
|
|
22
|
-
var Patch_1 = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/FiberRefs/Patch"));
|
|
23
|
-
exports.Patch = Patch_1;
|
|
24
24
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
25
25
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
26
26
|
//# sourceMappingURL=FiberRefs.js.map
|
package/FiberRefs.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FiberRefs.js","mappings":";;;;;;;;;
|
|
1
|
+
{"version":3,"file":"FiberRefs.js","mappings":";;;;;;;;;AASA;AAAmD;AAEnD;AAAA;EAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA;AAAoC;AAAA","names":[],"sourceRoot":"","sources":["../../src/FiberRefs.ts"],"sourcesContent":[null]}
|
package/Logger.d.ts
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @since 2.0.0
|
|
3
|
+
*
|
|
4
|
+
* ```md
|
|
5
|
+
* - Docs: https://effect-ts.github.io/io/modules/Logger.ts.html
|
|
6
|
+
* - Module: "@effect/io/Logger"
|
|
7
|
+
* ```
|
|
8
|
+
*/
|
|
9
|
+
import * as Level from "@effect/io/Logger/Level";
|
|
10
|
+
import * as Span from "@effect/io/Logger/Span";
|
|
11
|
+
export * from "@effect/io/Logger";
|
|
12
|
+
export {
|
|
13
|
+
/**
|
|
14
|
+
* @since 2.0.0
|
|
15
|
+
*
|
|
16
|
+
* ```md
|
|
17
|
+
* - Docs: https://effect-ts.github.io/io/modules/Logger/Level.ts.html
|
|
18
|
+
* - Module: "@effect/io/Logger/Level"
|
|
19
|
+
* ```
|
|
20
|
+
*/
|
|
21
|
+
Level as LogLevel,
|
|
22
|
+
/**
|
|
23
|
+
* @since 2.0.0
|
|
24
|
+
*
|
|
25
|
+
* ```md
|
|
26
|
+
* - Docs: https://effect-ts.github.io/io/modules/Logger/Span.ts.html
|
|
27
|
+
* - Module: "@effect/io/Logger/Span"
|
|
28
|
+
* ```
|
|
29
|
+
*/
|
|
30
|
+
Span as LogSpan };
|
|
31
|
+
//# sourceMappingURL=Logger.d.ts.map
|
package/Logger.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Logger.d.ts","sourceRoot":"","sources":["../../src/Logger.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,KAAK,KAAK,MAAM,yBAAyB,CAAA;AAChD,OAAO,KAAK,IAAI,MAAM,wBAAwB,CAAA;AAE9C,cAAc,mBAAmB,CAAA;AAEjC,OAAO;AACL;;;;;;;GAOG;AACH,KAAK,IAAI,QAAQ;AACjB;;;;;;;GAOG;AACH,IAAI,IAAI,OAAO,EAChB,CAAA"}
|
package/Logger.js
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
var _exportNames = {
|
|
7
|
+
LogLevel: true,
|
|
8
|
+
LogSpan: true
|
|
9
|
+
};
|
|
10
|
+
exports.LogSpan = exports.LogLevel = void 0;
|
|
11
|
+
var Level = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Logger/Level"));
|
|
12
|
+
exports.LogLevel = Level;
|
|
13
|
+
var Span = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Logger/Span"));
|
|
14
|
+
exports.LogSpan = Span;
|
|
15
|
+
var _Logger = /*#__PURE__*/require("@effect/io/Logger");
|
|
16
|
+
Object.keys(_Logger).forEach(function (key) {
|
|
17
|
+
if (key === "default" || key === "__esModule") return;
|
|
18
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
19
|
+
if (key in exports && exports[key] === _Logger[key]) return;
|
|
20
|
+
Object.defineProperty(exports, key, {
|
|
21
|
+
enumerable: true,
|
|
22
|
+
get: function () {
|
|
23
|
+
return _Logger[key];
|
|
24
|
+
}
|
|
25
|
+
});
|
|
26
|
+
});
|
|
27
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
28
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
29
|
+
//# sourceMappingURL=Logger.js.map
|
package/Logger.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Logger.js","mappings":";;;;;;;;;;AASA;AAAgD;AAChD;AAA8C;AAE9C;AAAA;EAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA;AAAiC;AAAA","names":[],"sourceRoot":"","sources":["../../src/Logger.ts"],"sourcesContent":[null]}
|
package/Metric.d.ts
CHANGED
|
@@ -1,11 +1,101 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @since 2.0.0
|
|
3
|
+
*
|
|
4
|
+
* ```md
|
|
5
|
+
* - Docs: https://effect-ts.github.io/io/modules/Metric.ts.html
|
|
6
|
+
* - Module: "@effect/io/Metric"
|
|
7
|
+
* ```
|
|
8
|
+
*/
|
|
9
|
+
import * as Boundaries from "@effect/io/Metric/Boundaries";
|
|
10
|
+
import * as Hook from "@effect/io/Metric/Hook";
|
|
11
|
+
import * as Key from "@effect/io/Metric/Key";
|
|
12
|
+
import * as KeyType from "@effect/io/Metric/KeyType";
|
|
13
|
+
import * as Label from "@effect/io/Metric/Label";
|
|
14
|
+
import * as Pair from "@effect/io/Metric/Pair";
|
|
15
|
+
import * as Polling from "@effect/io/Metric/Polling";
|
|
16
|
+
import * as Registry from "@effect/io/Metric/Registry";
|
|
17
|
+
import * as State from "@effect/io/Metric/State";
|
|
1
18
|
export * from "@effect/io/Metric";
|
|
2
|
-
export
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
19
|
+
export {
|
|
20
|
+
/**
|
|
21
|
+
* @since 2.0.0
|
|
22
|
+
*
|
|
23
|
+
* ```md
|
|
24
|
+
* - Docs: https://effect-ts.github.io/io/modules/Metric/Boundaries.ts.html
|
|
25
|
+
* - Module: "@effect/io/Metric/Boundaries"
|
|
26
|
+
* ```
|
|
27
|
+
*/
|
|
28
|
+
Boundaries,
|
|
29
|
+
/**
|
|
30
|
+
* @since 2.0.0
|
|
31
|
+
*
|
|
32
|
+
* ```md
|
|
33
|
+
* - Docs: https://effect-ts.github.io/io/modules/Metric/Hook.ts.html
|
|
34
|
+
* - Module: "@effect/io/Metric/Hook"
|
|
35
|
+
* ```
|
|
36
|
+
*/
|
|
37
|
+
Hook,
|
|
38
|
+
/**
|
|
39
|
+
* @since 2.0.0
|
|
40
|
+
*
|
|
41
|
+
* ```md
|
|
42
|
+
* - Docs: https://effect-ts.github.io/io/modules/Metric/Key.ts.html
|
|
43
|
+
* - Module: "@effect/io/Metric/Key"
|
|
44
|
+
* ```
|
|
45
|
+
*/
|
|
46
|
+
Key,
|
|
47
|
+
/**
|
|
48
|
+
* @since 2.0.0
|
|
49
|
+
*
|
|
50
|
+
* ```md
|
|
51
|
+
* - Docs: https://effect-ts.github.io/io/modules/Metric/KeyType.ts.html
|
|
52
|
+
* - Module: "@effect/io/Metric/KeyType"
|
|
53
|
+
* ```
|
|
54
|
+
*/
|
|
55
|
+
KeyType,
|
|
56
|
+
/**
|
|
57
|
+
* @since 2.0.0
|
|
58
|
+
*
|
|
59
|
+
* ```md
|
|
60
|
+
* - Docs: https://effect-ts.github.io/io/modules/Metric/Label.ts.html
|
|
61
|
+
* - Module: "@effect/io/Metric/Label"
|
|
62
|
+
* ```
|
|
63
|
+
*/
|
|
64
|
+
Label,
|
|
65
|
+
/**
|
|
66
|
+
* @since 2.0.0
|
|
67
|
+
*
|
|
68
|
+
* ```md
|
|
69
|
+
* - Docs: https://effect-ts.github.io/io/modules/Metric/Pair.ts.html
|
|
70
|
+
* - Module: "@effect/io/Metric/Pair"
|
|
71
|
+
* ```
|
|
72
|
+
*/
|
|
73
|
+
Pair,
|
|
74
|
+
/**
|
|
75
|
+
* @since 2.0.0
|
|
76
|
+
*
|
|
77
|
+
* ```md
|
|
78
|
+
* - Docs: https://effect-ts.github.io/io/modules/Metric/Polling.ts.html
|
|
79
|
+
* - Module: "@effect/io/Metric/Polling"
|
|
80
|
+
* ```
|
|
81
|
+
*/
|
|
82
|
+
Polling,
|
|
83
|
+
/**
|
|
84
|
+
* @since 2.0.0
|
|
85
|
+
*
|
|
86
|
+
* ```md
|
|
87
|
+
* - Docs: https://effect-ts.github.io/io/modules/Metric/Registry.ts.html
|
|
88
|
+
* - Module: "@effect/io/Metric/Registry"
|
|
89
|
+
* ```
|
|
90
|
+
*/
|
|
91
|
+
Registry,
|
|
92
|
+
/**
|
|
93
|
+
* @since 2.0.0
|
|
94
|
+
*
|
|
95
|
+
* ```md
|
|
96
|
+
* - Docs: https://effect-ts.github.io/io/modules/Metric/State.ts.html
|
|
97
|
+
* - Module: "@effect/io/Metric/State"
|
|
98
|
+
* ```
|
|
99
|
+
*/
|
|
100
|
+
State };
|
|
11
101
|
//# sourceMappingURL=Metric.d.ts.map
|
package/Metric.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Metric.d.ts","sourceRoot":"","sources":["../../src/Metric.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"Metric.d.ts","sourceRoot":"","sources":["../../src/Metric.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,KAAK,UAAU,MAAM,8BAA8B,CAAA;AAC1D,OAAO,KAAK,IAAI,MAAM,wBAAwB,CAAA;AAC9C,OAAO,KAAK,GAAG,MAAM,uBAAuB,CAAA;AAC5C,OAAO,KAAK,OAAO,MAAM,2BAA2B,CAAA;AACpD,OAAO,KAAK,KAAK,MAAM,yBAAyB,CAAA;AAChD,OAAO,KAAK,IAAI,MAAM,wBAAwB,CAAA;AAC9C,OAAO,KAAK,OAAO,MAAM,2BAA2B,CAAA;AACpD,OAAO,KAAK,QAAQ,MAAM,4BAA4B,CAAA;AACtD,OAAO,KAAK,KAAK,MAAM,yBAAyB,CAAA;AAEhD,cAAc,mBAAmB,CAAA;AAEjC,OAAO;AACL;;;;;;;GAOG;AACH,UAAU;AACV;;;;;;;GAOG;AACH,IAAI;AACJ;;;;;;;GAOG;AACH,GAAG;AACH;;;;;;;GAOG;AACH,OAAO;AACP;;;;;;;GAOG;AACH,KAAK;AACL;;;;;;;GAOG;AACH,IAAI;AACJ;;;;;;;GAOG;AACH,OAAO;AACP;;;;;;;GAOG;AACH,QAAQ;AACR;;;;;;;GAOG;AACH,KAAK,EACN,CAAA"}
|
package/Metric.js
CHANGED
|
@@ -15,6 +15,24 @@ var _exportNames = {
|
|
|
15
15
|
State: true
|
|
16
16
|
};
|
|
17
17
|
exports.State = exports.Registry = exports.Polling = exports.Pair = exports.Label = exports.KeyType = exports.Key = exports.Hook = exports.Boundaries = void 0;
|
|
18
|
+
var Boundaries = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Metric/Boundaries"));
|
|
19
|
+
exports.Boundaries = Boundaries;
|
|
20
|
+
var Hook = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Metric/Hook"));
|
|
21
|
+
exports.Hook = Hook;
|
|
22
|
+
var Key = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Metric/Key"));
|
|
23
|
+
exports.Key = Key;
|
|
24
|
+
var KeyType = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Metric/KeyType"));
|
|
25
|
+
exports.KeyType = KeyType;
|
|
26
|
+
var Label = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Metric/Label"));
|
|
27
|
+
exports.Label = Label;
|
|
28
|
+
var Pair = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Metric/Pair"));
|
|
29
|
+
exports.Pair = Pair;
|
|
30
|
+
var Polling = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Metric/Polling"));
|
|
31
|
+
exports.Polling = Polling;
|
|
32
|
+
var Registry = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Metric/Registry"));
|
|
33
|
+
exports.Registry = Registry;
|
|
34
|
+
var State = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Metric/State"));
|
|
35
|
+
exports.State = State;
|
|
18
36
|
var _Metric = /*#__PURE__*/require("@effect/io/Metric");
|
|
19
37
|
Object.keys(_Metric).forEach(function (key) {
|
|
20
38
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -27,24 +45,6 @@ Object.keys(_Metric).forEach(function (key) {
|
|
|
27
45
|
}
|
|
28
46
|
});
|
|
29
47
|
});
|
|
30
|
-
var Boundaries_1 = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Metric/Boundaries"));
|
|
31
|
-
exports.Boundaries = Boundaries_1;
|
|
32
|
-
var Hook_1 = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Metric/Hook"));
|
|
33
|
-
exports.Hook = Hook_1;
|
|
34
|
-
var Key_1 = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Metric/Key"));
|
|
35
|
-
exports.Key = Key_1;
|
|
36
|
-
var KeyType_1 = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Metric/KeyType"));
|
|
37
|
-
exports.KeyType = KeyType_1;
|
|
38
|
-
var Label_1 = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Metric/Label"));
|
|
39
|
-
exports.Label = Label_1;
|
|
40
|
-
var Pair_1 = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Metric/Pair"));
|
|
41
|
-
exports.Pair = Pair_1;
|
|
42
|
-
var Polling_1 = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Metric/Polling"));
|
|
43
|
-
exports.Polling = Polling_1;
|
|
44
|
-
var Registry_1 = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Metric/Registry"));
|
|
45
|
-
exports.Registry = Registry_1;
|
|
46
|
-
var State_1 = /*#__PURE__*/_interopRequireWildcard( /*#__PURE__*/require("@effect/io/Metric/State"));
|
|
47
|
-
exports.State = State_1;
|
|
48
48
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
49
49
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
50
50
|
//# sourceMappingURL=Metric.js.map
|
package/Metric.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Metric.js","mappings":";;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"Metric.js","mappings":";;;;;;;;;;;;;;;;;AASA;AAA0D;AAC1D;AAA8C;AAC9C;AAA4C;AAC5C;AAAoD;AACpD;AAAgD;AAChD;AAA8C;AAC9C;AAAoD;AACpD;AAAsD;AACtD;AAAgD;AAEhD;AAAA;EAAA;EAAA;EAAA;EAAA;IAAA;IAAA;MAAA;IAAA;EAAA;AAAA;AAAiC;AAAA","names":[],"sourceRoot":"","sources":["../../src/Metric.ts"],"sourcesContent":[null]}
|
package/Optic.d.ts
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @since 2.0.0
|
|
3
|
+
*
|
|
4
|
+
* ```md
|
|
5
|
+
* - Docs: https://fp-ts.github.io/optic/modules/index.ts.html
|
|
6
|
+
* - Docs: https://fp-ts.github.io/optic/modules/experimental.ts.html
|
|
7
|
+
* - Module: "@fp-ts/optic"
|
|
8
|
+
* - Module: "@fp-ts/optic/experimental"
|
|
9
|
+
* ```
|
|
10
|
+
*/
|
|
11
|
+
import { left, right } from "@fp-ts/optic/data/Either";
|
|
12
|
+
import { cons } from "@fp-ts/optic/data/List";
|
|
13
|
+
import { none, some } from "@fp-ts/optic/data/Option";
|
|
14
|
+
export * from "@fp-ts/optic";
|
|
15
|
+
export * from "@fp-ts/optic/experimental";
|
|
16
|
+
export {
|
|
17
|
+
/**
|
|
18
|
+
* @since 2.0.0
|
|
19
|
+
*
|
|
20
|
+
* ```md
|
|
21
|
+
* - Docs: https://fp-ts.github.io/optic/modules/data/List.ts.html#cons
|
|
22
|
+
* - Module: "@fp-ts/optic/data/Option"
|
|
23
|
+
* ```
|
|
24
|
+
*/
|
|
25
|
+
cons as consList,
|
|
26
|
+
/**
|
|
27
|
+
* @since 2.0.0
|
|
28
|
+
*
|
|
29
|
+
* ```md
|
|
30
|
+
* - Docs: https://fp-ts.github.io/optic/modules/data/Either.ts.html#left
|
|
31
|
+
* - Module: "@fp-ts/optic/data/Either"
|
|
32
|
+
* ```
|
|
33
|
+
*/
|
|
34
|
+
left,
|
|
35
|
+
/**
|
|
36
|
+
* @since 2.0.0
|
|
37
|
+
*
|
|
38
|
+
* ```md
|
|
39
|
+
* - Docs: https://fp-ts.github.io/optic/modules/data/Option.ts.html#none
|
|
40
|
+
* - Module: "@fp-ts/optic/data/Option"
|
|
41
|
+
* ```
|
|
42
|
+
*/
|
|
43
|
+
none,
|
|
44
|
+
/**
|
|
45
|
+
* @since 2.0.0
|
|
46
|
+
*
|
|
47
|
+
* ```md
|
|
48
|
+
* - Docs: https://fp-ts.github.io/optic/modules/data/Either.ts.html#right
|
|
49
|
+
* - Module: "@fp-ts/optic/data/Either"
|
|
50
|
+
* ```
|
|
51
|
+
*/
|
|
52
|
+
right,
|
|
53
|
+
/**
|
|
54
|
+
* @since 2.0.0
|
|
55
|
+
*
|
|
56
|
+
* ```md
|
|
57
|
+
* - Docs: https://fp-ts.github.io/optic/modules/data/Option.ts.html#some
|
|
58
|
+
* - Module: "@fp-ts/optic/data/Option"
|
|
59
|
+
* ```
|
|
60
|
+
*/
|
|
61
|
+
some };
|
|
62
|
+
//# sourceMappingURL=Optic.d.ts.map
|
package/Optic.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Optic.d.ts","sourceRoot":"","sources":["../../src/Optic.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAEH,OAAO,EAAE,IAAI,EAAE,KAAK,EAAE,MAAM,0BAA0B,CAAA;AACtD,OAAO,EAAE,IAAI,EAAE,MAAM,wBAAwB,CAAA;AAC7C,OAAO,EAAE,IAAI,EAAE,IAAI,EAAE,MAAM,0BAA0B,CAAA;AAErD,cAAc,cAAc,CAAA;AAC5B,cAAc,2BAA2B,CAAA;AAEzC,OAAO;AACL;;;;;;;GAOG;AACH,IAAI,IAAI,QAAQ;AAChB;;;;;;;GAOG;AACH,IAAI;AACJ;;;;;;;GAOG;AACH,IAAI;AACJ;;;;;;;GAOG;AACH,KAAK;AACL;;;;;;;GAOG;AACH,IAAI,EACL,CAAA"}
|