This type is used to get the value of a result.
const thing: Result<number, string> = ok(1);type ResultType = ResultValue<typeof thing>; // number Copy
const thing: Result<number, string> = ok(1);type ResultType = ResultValue<typeof thing>; // number
This type is used to get the value of a result.