Skip to content

Commit

Permalink
doc: Add Napi::BigInt::New() overload for uint64_t
Browse files Browse the repository at this point in the history
  • Loading branch information
ikokostya committed Feb 17, 2020
1 parent baaaa84 commit cb498bb
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions doc/bigint.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ A JavaScript BigInt value.

```cpp
static Napi::BigInt Napi::BigInt::New(Napi::Env env, int64_t value);
static Napi::BigInt Napi::BigInt::New(Napi::Env env, uint64_t value);
```
- `[in] env`: The environment in which to construct the `Napi::BigInt` object.
Expand Down

0 comments on commit cb498bb

Please sign in to comment.