some type corrections

This commit is contained in:
Simon Seyock
2019-10-09 10:33:07 +02:00
parent 2483fbd26b
commit 5b1106ac23
3 changed files with 5 additions and 5 deletions

View File

@@ -39,10 +39,10 @@ export function VOID() {}
export function memoizeOne(fn) {
let called = false;
/** @type ReturnType */
/** @type {ReturnType} */
let lastResult;
/** @type Array<any> */
/** @type {Array<any>} */
let lastArgs;
let lastThis;