typescript-optional
Advanced tools
Comparing version 3.0.0-alpha.2 to 3.0.0-alpha.3
@@ -1,2 +0,2 @@ | ||
export { Optional } from "./optional.js"; | ||
export { Optional, PresentOptional, EmptyOptional } from "./optional.js"; | ||
export { Cases, Empty, Option, Present } from "./types.js"; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.Optional = void 0; | ||
exports.EmptyOptional = exports.PresentOptional = exports.Optional = void 0; | ||
var optional_js_1 = require("./optional.js"); | ||
Object.defineProperty(exports, "Optional", { enumerable: true, get: function () { return optional_js_1.Optional; } }); | ||
Object.defineProperty(exports, "PresentOptional", { enumerable: true, get: function () { return optional_js_1.PresentOptional; } }); | ||
Object.defineProperty(exports, "EmptyOptional", { enumerable: true, get: function () { return optional_js_1.EmptyOptional; } }); | ||
//# sourceMappingURL=index.js.map |
@@ -1,2 +0,2 @@ | ||
export { Optional } from "./optional.js"; | ||
export { Optional, PresentOptional, EmptyOptional } from "./optional.js"; | ||
export { Cases, Empty, Option, Present } from "./types.js"; |
@@ -1,2 +0,2 @@ | ||
export { Optional } from "./optional.js"; | ||
export { Optional, PresentOptional, EmptyOptional } from "./optional.js"; | ||
//# sourceMappingURL=index.js.map |
{ | ||
"name": "typescript-optional", | ||
"version": "3.0.0-alpha.2", | ||
"version": "3.0.0-alpha.3", | ||
"description": "Optional (like Java) implementation in TypeScript", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
29549
447