### ๐ Search Terms - toBase64 ### ๐ Version & Regression Information - This is the behavior in v5.9.0-dev.20250512. ### โฏ Playground Link https://www.typescriptlang.org/play/?ts=5.9.0-dev.20250512#code/KoSwdgLgHAggTnAhgTwHQDM4HsC2AhRAZwFMA2AFgAoBKAKFElgRQ2xwAliAPG+8aeEjQAHbBCwRkw4qhIQAYmwIkKvBgOYixEqTLmLcnHnXVMhqURJ3TU45WSon+ZlpfGSb4ozSA ### ๐ป Code ```ts Uint8Array.fromBase64() Uint8Array.fromHex() Uint8Array.prototype.setFromBase64() Uint8Array.prototype.setFromHex() Uint8Array.prototype.toBase64() Uint8Array.prototype.toHex() ``` ### ๐ Actual behavior `Property XXX does not exist โฆ` errors in each case. ### ๐ Expected behavior Correct type definitions should exist. ### Additional information about the issue These features have been **implemented by every major JavaScript engine except V8.** See: - https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array/toBase64#browser_compatibility (where it is marked, "Limited availability") See also: - #60743 - #60612