This commit is contained in:
2025-08-06 16:22:19 +03:00
parent 16789a942e
commit 40dc6a2637
20 changed files with 250 additions and 183 deletions

6
types/mem.d.ts vendored
View File

@ -1,4 +1,4 @@
/**
* copies max possible number of bytes from src to dest (min of both sizes)
*/
export function memcpy(dest: DataView, src: DataView): void;
* copies max possible number of bytes from src to dest (min of both sizes)
*/
export function memcpy(dest: DataView, src: DataView): void