refactor: fix types

This commit is contained in:
syuilo 2023-02-09 10:50:53 +09:00
parent 71dd7f89e9
commit 5b6695114f
1 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@
* The getter will return a .bind version of the function
* and memoize the result against a symbol on the instance
*/
export function bindThis(target, key, descriptor) {
export function bindThis(target: any, key: string, descriptor: any) {
let fn = descriptor.value;
if (typeof fn !== 'function') {
@ -34,7 +34,7 @@ export function bindThis(target, key, descriptor) {
});
return boundFn;
},
set(value) {
set(value: any) {
fn = value;
},
};