From bb2da9633e6db17e544f40a814efaa9aaf68380f Mon Sep 17 00:00:00 2001 From: Evan You Date: Thu, 4 Oct 2018 18:06:16 -0400 Subject: [PATCH] types: fix types --- packages/core/src/componentProxy.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/core/src/componentProxy.ts b/packages/core/src/componentProxy.ts index 8b92fe17..e2387f8c 100644 --- a/packages/core/src/componentProxy.ts +++ b/packages/core/src/componentProxy.ts @@ -15,7 +15,7 @@ function getBoundMethod(fn: Function, target: any, receiver: any): Function { } const renderProxyHandlers = { - get(target: MountedComponent, key: string, receiver: any) { + get(target: MountedComponent, key: string, receiver: any) { if (key === '_self') { return target } else if ( @@ -50,7 +50,7 @@ const renderProxyHandlers = { } }, set( - target: MountedComponent, + target: MountedComponent, key: string, value: any, receiver: any