summaryrefslogtreecommitdiff
path: root/typings
diff options
context:
space:
mode:
authorAntoine du Hamel <duhamelantoine1995@gmail.com>2022-11-27 19:27:21 +0100
committerGitHub <noreply@github.com>2022-11-27 18:27:21 +0000
commite7f172c191834d98c070b7111c990aafd313e130 (patch)
treebcba41413e728e25298f47278747479dfb0ce1ff /typings
parentfb91ee4f26ab0edfcddddbab8b88b5d822d74064 (diff)
downloadnode-new-e7f172c191834d98c070b7111c990aafd313e130.tar.gz
crypto: refactor ArrayBuffer to bigint conversion utils
PR-URL: https://github.com/nodejs/node/pull/45567 Refs: https://github.com/nodejs/performance/issues/16 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'typings')
-rw-r--r--typings/primordials.d.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/typings/primordials.d.ts b/typings/primordials.d.ts
index 72d5a36701..4dcbac3abc 100644
--- a/typings/primordials.d.ts
+++ b/typings/primordials.d.ts
@@ -422,7 +422,9 @@ declare namespace primordials {
export const StringName: typeof String.name
export const StringPrototype: typeof String.prototype
export const StringFromCharCode: typeof String.fromCharCode
+ export const StringFromCharCodeApply: StaticApply<typeof String.fromCharCode>
export const StringFromCodePoint: typeof String.fromCodePoint
+ export const StringFromCodePointApply: StaticApply<typeof String.fromCodePoint>
export const StringRaw: typeof String.raw
export const StringPrototypeAnchor: UncurryThis<typeof String.prototype.anchor>
export const StringPrototypeBig: UncurryThis<typeof String.prototype.big>