Creates a successful result with the given value.
The type of the value
The value to wrap in a successful result
A Result object representing success with the given value
const result = ok("hello world")if (result.ok) { console.log(result.value) // "hello world"} Copy
const result = ok("hello world")if (result.ok) { console.log(result.value) // "hello world"}
Creates a successful result with the given value.