export function ok<TOk, TFail>(value: TOk): IResult<TOk, TFail> {
  return Result.ok<TOk, TFail>(value)
}