Skip to content

Commit

Permalink
typings: add missing type of ArrayBufferPrototypeGetByteLength
Browse files Browse the repository at this point in the history
PR-URL: #55439
Reviewed-By: Antoine du Hamel <[email protected]>
Reviewed-By: Luigi Pinca <[email protected]>
  • Loading branch information
iwuliz authored and ruyadorno committed Nov 27, 2024
1 parent 6aeeaa7 commit c8e7f76
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions typings/primordials.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@ declare namespace primordials {
export const ArrayBufferPrototypeGetDetached: UncurryThis<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">;
export const AsyncIteratorPrototype: AsyncIterable<any>;
export import BigInt = globalThis.BigInt;
export const BigIntPrototype: typeof BigInt.prototype
Expand Down

0 comments on commit c8e7f76

Please sign in to comment.