0
奇怪的錯誤:TS2345:X型商榷是不能分配給Y型的參數與打字稿
作爲圖像表示的,錯誤是:
TS2345: Argument of type 'ErrnoException' is not assignable to parameter of type '(err: ErrnoException) => void'. Type 'ErrnoException' provides no match for the signature '(err: ErrnoException): void'.
這裏是導致錯誤的代碼:
export const bump = function(cb: ErrnoException){
const {pkg, pkgPath} = syncSetup();
fs.writeFile(pkgPath, JSON.stringify(pkg, null, 2), cb);
};
有人知道這裏發生了什麼?