(fail?: ValueOrProvider<string>)
| 14 | |
| 15 | export interface Option<T> { |
| 16 | unwrap(fail?: ValueOrProvider<string>): T |
| 17 | unwrapOrElse(or: ValueOrProvider<T>): T |
| 18 | unwrapOrNull(): Nullable<T> |
| 19 | unwrapOrUndefined(): T | undefined |
no outgoing calls
no test coverage detected