@@ -505,16 +505,28 @@ declare namespace primordials {
505505 | typeof BigInt64Array . prototype
506506 | typeof BigUint64Array . prototype
507507 | typeof Uint8ClampedArray . prototype ;
508- export const TypedArrayPrototypeGetBuffer : UncurryGetter < TypedArray , "buffer" > ;
509- export const TypedArrayPrototypeGetByteLength : UncurryGetter < TypedArray , "byteLength" > ;
510- export const TypedArrayPrototypeGetByteOffset : UncurryGetter < TypedArray , "byteOffset" > ;
511- export const TypedArrayPrototypeGetLength : UncurryGetter < TypedArray , "length" > ;
512- export function TypedArrayPrototypeAt < T extends TypedArray > ( self : T , ...args : Parameters < T [ "at" ] > ) : ReturnType < T [ "at" ] > ;
513- export function TypedArrayPrototypeIncludes < T extends TypedArray > ( self : T , ...args : Parameters < T [ "includes" ] > ) : ReturnType < T [ "includes" ] > ;
514- export function TypedArrayPrototypeFill < T extends TypedArray > ( self : T , ...args : Parameters < T [ "fill" ] > ) : ReturnType < T [ "fill" ] > ;
515- export function TypedArrayPrototypeSet < T extends TypedArray > ( self : T , ...args : Parameters < T [ "set" ] > ) : ReturnType < T [ "set" ] > ;
516- export function TypedArrayPrototypeSubarray < T extends TypedArray > ( self : T , ...args : Parameters < T [ "subarray" ] > ) : ReturnType < T [ "subarray" ] > ;
517- export function TypedArrayPrototypeSlice < T extends TypedArray > ( self : T , ...args : Parameters < T [ "slice" ] > ) : ReturnType < T [ "slice" ] > ;
508+ export const TypedArrayPrototypeGetBuffer : UncurryGetter < TypedArray , 'buffer' > ;
509+ export const TypedArrayPrototypeGetByteLength : UncurryGetter < TypedArray , 'byteLength' > ;
510+ export const TypedArrayPrototypeGetByteOffset : UncurryGetter < TypedArray , 'byteOffset' > ;
511+ export const TypedArrayPrototypeGetLength : UncurryGetter < TypedArray , 'length' > ;
512+ export function TypedArrayPrototypeAt < T extends TypedArray > (
513+ self : T , ...args : Parameters < T [ 'at' ] >
514+ ) : ReturnType < T [ 'at' ] > ;
515+ export function TypedArrayPrototypeIncludes < T extends TypedArray > (
516+ self : T , ...args : Parameters < T [ 'includes' ] >
517+ ) : ReturnType < T [ 'includes' ] > ;
518+ export function TypedArrayPrototypeFill < T extends TypedArray > (
519+ self : T , ...args : Parameters < T [ 'fill' ] >
520+ ) : ReturnType < T [ 'fill' ] > ;
521+ export function TypedArrayPrototypeSet < T extends TypedArray > (
522+ self : T , ...args : Parameters < T [ 'set' ] >
523+ ) : ReturnType < T [ 'set' ] > ;
524+ export function TypedArrayPrototypeSubarray < T extends TypedArray > (
525+ self : T , ...args : Parameters < T [ 'subarray' ] >
526+ ) : ReturnType < T [ 'subarray' ] > ;
527+ export function TypedArrayPrototypeSlice < T extends TypedArray > (
528+ self : T , ...args : Parameters < T [ 'slice' ] >
529+ ) : ReturnType < T [ 'slice' ] > ;
518530 export function TypedArrayPrototypeGetSymbolToStringTag ( self : unknown ) :
519531 | 'Int8Array'
520532 | 'Int16Array'
0 commit comments