lib: fix incorrect `ArrayBufferPrototypeGetDetached` primordial type · nodejs/node@cfaa299

Original file line numberDiff line numberDiff line change

@@ -164,7 +164,7 @@ declare namespace primordials {

164164

export import ArrayBuffer = globalThis.ArrayBuffer;

165165

export const ArrayBufferPrototype: typeof ArrayBuffer.prototype

166166

export const ArrayBufferIsView: typeof ArrayBuffer.isView

167-

export const ArrayBufferPrototypeGetDetached: UncurryThis<typeof ArrayBuffer.prototype.detached>

167+

export const ArrayBufferPrototypeGetDetached: UncurryGetter<typeof ArrayBuffer.prototype, 'detached'>;

168168

export const ArrayBufferPrototypeSlice: UncurryThis<typeof ArrayBuffer.prototype.slice>

169169

export const ArrayBufferPrototypeTransfer: UncurryThis<typeof ArrayBuffer.prototype.transfer>

170170

export const ArrayBufferPrototypeGetByteLength: UncurryGetter<typeof ArrayBuffer.prototype , "byteLength">;