From cb498bbe7f8aa601e95c7946df3db6dedf15f709 Mon Sep 17 00:00:00 2001 From: ikokostya Date: Tue, 18 Feb 2020 01:16:52 +0300 Subject: [PATCH] doc: Add Napi::BigInt::New() overload for uint64_t --- doc/bigint.md | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/bigint.md b/doc/bigint.md index cc981040b..ac403490e 100644 --- a/doc/bigint.md +++ b/doc/bigint.md @@ -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.