mirror of
https://github.com/zebrajr/node.git
synced 2026-01-15 12:15:26 +00:00
lib: fix incorrect ArrayBufferPrototypeGetDetached primordial type
PR-URL: https://github.com/nodejs/node/pull/58978 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
This commit is contained in:
2
typings/primordials.d.ts
vendored
2
typings/primordials.d.ts
vendored
@@ -164,7 +164,7 @@ declare namespace primordials {
|
||||
export import ArrayBuffer = globalThis.ArrayBuffer;
|
||||
export const ArrayBufferPrototype: typeof ArrayBuffer.prototype
|
||||
export const ArrayBufferIsView: typeof ArrayBuffer.isView
|
||||
export const ArrayBufferPrototypeGetDetached: UncurryThis<typeof ArrayBuffer.prototype.detached>
|
||||
export const ArrayBufferPrototypeGetDetached: UncurryGetter<typeof ArrayBuffer.prototype, 'detached'>;
|
||||
export const ArrayBufferPrototypeSlice: UncurryThis<typeof ArrayBuffer.prototype.slice>
|
||||
export const ArrayBufferPrototypeTransfer: UncurryThis<typeof ArrayBuffer.prototype.transfer>
|
||||
export const ArrayBufferPrototypeGetByteLength: UncurryGetter<typeof ArrayBuffer.prototype , "byteLength">;
|
||||
|
||||
Reference in New Issue
Block a user