如何在TypeScript中声明UInt8Array类型的函数参数?
import * as fs from "fs";
fs.readFile(fileName, (err: string, data: UInt8Array) => {
if (err) {
return console.error(err);
}
console.log("file text: " + data.toString());
});
我有一个错误:
谢谢
最佳答案
您的错误消息表示有错字,即
error TS2304: Cannot find name 'UInt8Array'
提示
UInt8Array
。但是,您要查找的名称可能是Uint8Array,带有小写的i
。关于javascript - 在TypeScript中声明UInt8Array变量,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38708405/