typescript-optional
Advanced tools
Comparing version 2.0.2-alpha.6 to 2.0.2-alpha.7
export { Optional } from "./optional.js"; | ||
export { Cases, Empty, Option, Present } from "./types"; | ||
export { Cases, Empty, Option, Present } from "./types.js"; |
@@ -1,2 +0,2 @@ | ||
import { Cases, Option } from "./types"; | ||
import { Cases, Option } from "./types.js"; | ||
export declare abstract class Optional<T> { | ||
@@ -3,0 +3,0 @@ abstract isPresent(): boolean; |
export { Optional } from "./optional.js"; | ||
export { Cases, Empty, Option, Present } from "./types"; | ||
export { Cases, Empty, Option, Present } from "./types.js"; |
@@ -1,2 +0,2 @@ | ||
import { Cases, Option } from "./types"; | ||
import { Cases, Option } from "./types.js"; | ||
export declare abstract class Optional<T> { | ||
@@ -3,0 +3,0 @@ abstract isPresent(): boolean; |
{ | ||
"name": "typescript-optional", | ||
"version": "2.0.2-alpha.6", | ||
"version": "2.0.2-alpha.7", | ||
"description": "Optional (like Java) implementation in TypeScript", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
25883