From: Evan You Date: Tue, 13 Jul 2021 14:57:41 +0000 (-0400) Subject: types: fix dts tests X-Git-Tag: v3.2.0-beta.1~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bf4893c17ca5241565999d6d85ad294a38bd923f;p=thirdparty%2Fvuejs%2Fcore.git types: fix dts tests --- diff --git a/packages/runtime-core/src/helpers/withMemo.ts b/packages/runtime-core/src/helpers/withMemo.ts index 33a243c93f..e3ac03bb0b 100644 --- a/packages/runtime-core/src/helpers/withMemo.ts +++ b/packages/runtime-core/src/helpers/withMemo.ts @@ -2,7 +2,7 @@ import { currentBlock, isBlockTreeEnabled, VNode } from '../vnode' export function withMemo( memo: any[], - render: () => VNode, + render: () => VNode, cache: any[], index: number ) {