We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AR.isOk
AR.isError
It appears that the functions AR.isOk and AR.isError are defined in the typescript definitions here:
ts-belt/src/AsyncResult/AsyncResult.ts
Lines 59 to 65 in c825d97
however they are not implemented in the underling Rescript.
this means that calling one of these functions results in the following:
TypeError: import_ts_belt.AR.isOk is not a function
and logging out these values:
console.log(AR.isOk); console.log(AR.isError);
results in:
undefined undefined
The text was updated successfully, but these errors were encountered:
AsyncResult
Successfully merging a pull request may close this issue.
It appears that the functions
AR.isOk
andAR.isError
are defined in the typescript definitions here:ts-belt/src/AsyncResult/AsyncResult.ts
Lines 59 to 65 in c825d97
however they are not implemented in the underling Rescript.
this means that calling one of these functions results in the following:
and logging out these values:
results in:
The text was updated successfully, but these errors were encountered: