parameter 1 is not of type 'Uint8Array'. code example
Example 1: const arr = new Uint8Array(fileReader.result).subarray(0, 4);
const arr = new Uint8Array(fileReader.result).subarray(0, 4);
Example 2: const arr = new Uint8Array(fileReader.result).subarray(0, 4);
const arr = new Uint8Array(<ArrayBuffer>fileReader.result).subarray(0, 4);