Comparing version 0.16.2 to 0.16.3
@@ -5,2 +5,9 @@ # Changelog | ||
## 0.16.3 | ||
### Bug fix | ||
- Fix the compile error of `option-t.d.ts`. ([PR106](https://github.com/saneyuki/option-t.js/pull/106)) | ||
- This catches up [pr105](https://github.com/saneyuki/option-t.js/pull/105) | ||
## 0.16.2 | ||
@@ -7,0 +14,0 @@ |
@@ -37,3 +37,3 @@ /** | ||
*/ | ||
isSome: this is Some<T>; | ||
isSome: boolean; | ||
@@ -43,3 +43,3 @@ /** | ||
*/ | ||
isNone: this is None<T>; | ||
isNone: boolean; | ||
@@ -194,4 +194,4 @@ /** | ||
constructor(val: T); | ||
isSome: this is Some<T>; | ||
isNone: this is None<T>; | ||
isSome: boolean; | ||
isNone: boolean; | ||
unwrap(): T; | ||
@@ -215,4 +215,4 @@ unwrapOr(def: T): T; | ||
constructor(); | ||
isSome: this is Some<T>; | ||
isNone: this is None<T>; | ||
isSome: boolean; | ||
isNone: boolean; | ||
unwrap(): T; | ||
@@ -219,0 +219,0 @@ unwrapOr(def: T): T; |
{ | ||
"name": "option-t", | ||
"version": "0.16.2", | ||
"version": "0.16.3", | ||
"description": "Option type implementation whose APIs are inspired by Rust's `Option<T>`.", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
40141