5 lines
148 B
TypeScript
5 lines
148 B
TypeScript
/**
|
|
* copies max possible number of bytes from src to dest (min of both sizes)
|
|
*/
|
|
export function memcpy(dest: DataView, src: DataView): void;
|