@@ -492,16 +492,28 @@ declare namespace primordials {
492
492
| typeof BigInt64Array . prototype
493
493
| typeof BigUint64Array . prototype
494
494
| typeof Uint8ClampedArray . prototype ;
495
- export const TypedArrayPrototypeGetBuffer : UncurryGetter < TypedArray , "buffer" > ;
496
- export const TypedArrayPrototypeGetByteLength : UncurryGetter < TypedArray , "byteLength" > ;
497
- export const TypedArrayPrototypeGetByteOffset : UncurryGetter < TypedArray , "byteOffset" > ;
498
- export const TypedArrayPrototypeGetLength : UncurryGetter < TypedArray , "length" > ;
499
- export function TypedArrayPrototypeAt < T extends TypedArray > ( self : T , ...args : Parameters < T [ "at" ] > ) : ReturnType < T [ "at" ] > ;
500
- export function TypedArrayPrototypeIncludes < T extends TypedArray > ( self : T , ...args : Parameters < T [ "includes" ] > ) : ReturnType < T [ "includes" ] > ;
501
- export function TypedArrayPrototypeFill < T extends TypedArray > ( self : T , ...args : Parameters < T [ "fill" ] > ) : ReturnType < T [ "fill" ] > ;
502
- export function TypedArrayPrototypeSet < T extends TypedArray > ( self : T , ...args : Parameters < T [ "set" ] > ) : ReturnType < T [ "set" ] > ;
503
- export function TypedArrayPrototypeSubarray < T extends TypedArray > ( self : T , ...args : Parameters < T [ "subarray" ] > ) : ReturnType < T [ "subarray" ] > ;
504
- export function TypedArrayPrototypeSlice < T extends TypedArray > ( self : T , ...args : Parameters < T [ "slice" ] > ) : ReturnType < T [ "slice" ] > ;
495
+ export const TypedArrayPrototypeGetBuffer : UncurryGetter < TypedArray , 'buffer' > ;
496
+ export const TypedArrayPrototypeGetByteLength : UncurryGetter < TypedArray , 'byteLength' > ;
497
+ export const TypedArrayPrototypeGetByteOffset : UncurryGetter < TypedArray , 'byteOffset' > ;
498
+ export const TypedArrayPrototypeGetLength : UncurryGetter < TypedArray , 'length' > ;
499
+ export function TypedArrayPrototypeAt < T extends TypedArray > (
500
+ self : T , ...args : Parameters < T [ 'at' ] >
501
+ ) : ReturnType < T [ 'at' ] > ;
502
+ export function TypedArrayPrototypeIncludes < T extends TypedArray > (
503
+ self : T , ...args : Parameters < T [ 'includes' ] >
504
+ ) : ReturnType < T [ 'includes' ] > ;
505
+ export function TypedArrayPrototypeFill < T extends TypedArray > (
506
+ self : T , ...args : Parameters < T [ 'fill' ] >
507
+ ) : ReturnType < T [ 'fill' ] > ;
508
+ export function TypedArrayPrototypeSet < T extends TypedArray > (
509
+ self : T , ...args : Parameters < T [ 'set' ] >
510
+ ) : ReturnType < T [ 'set' ] > ;
511
+ export function TypedArrayPrototypeSubarray < T extends TypedArray > (
512
+ self : T , ...args : Parameters < T [ 'subarray' ] >
513
+ ) : ReturnType < T [ 'subarray' ] > ;
514
+ export function TypedArrayPrototypeSlice < T extends TypedArray > (
515
+ self : T , ...args : Parameters < T [ 'slice' ] >
516
+ ) : ReturnType < T [ 'slice' ] > ;
505
517
export function TypedArrayPrototypeGetSymbolToStringTag ( self : unknown ) :
506
518
| 'Int8Array'
507
519
| 'Int16Array'
0 commit comments