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
require
import
The example code in README.md results in an error: fdb.openSync is not a function. This is because the following line:
README.md
fdb.openSync is not a function
const fdb = require('foundationdb')
..results in importing an object of the shape:
{ default: { FDBError: [Function: FDBError], configNetwork: [Function: configNetwork], ... } }
So I had to require the module like this:
const fdb = require('foundationdb').default
Related to: Microsoft/TypeScript#2719 - ES6 Modules default exports interop with CommonJS
The text was updated successfully, but these errors were encountered:
require' instead of
Thanks for catching that. Fixed & republished.
Sorry, something went wrong.
No branches or pull requests
The example code in
README.md
results in an error:fdb.openSync is not a function
. This is because the following line:..results in importing an object of the shape:
So I had to require the module like this:
Related to: Microsoft/TypeScript#2719 - ES6 Modules default exports interop with CommonJS
The text was updated successfully, but these errors were encountered: