From 0c498317307f2e246d9c26a3cf5a11074f54f990 Mon Sep 17 00:00:00 2001 From: kawoka Date: Sun, 8 Mar 2020 10:57:59 +0900 Subject: [PATCH] types(v-node-directive): changed expression type of VNodeDerective to optional string fix #10871 --- types/vnode.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/vnode.d.ts b/types/vnode.d.ts index dc4470ffd84..04b058cba4c 100644 --- a/types/vnode.d.ts +++ b/types/vnode.d.ts @@ -69,7 +69,7 @@ export interface VNodeDirective { name: string; value?: any; oldValue?: any; - expression?: any; + expression?: string; arg?: string; oldArg?: string; modifiers?: { [key: string]: boolean };