From 22652a1cef630fab242ad641cf1d5d5dea520ab8 Mon Sep 17 00:00:00 2001 From: Steve Repsher Date: Mon, 9 Jan 2023 01:13:18 -0500 Subject: [PATCH] Correct return type to CustomElementConstructor --- types/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/index.d.ts b/types/index.d.ts index 8b67b7b..612102c 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -3,6 +3,6 @@ import _Vue, { Component, AsyncComponent } from 'vue' declare function wrap( Vue: typeof _Vue, Component: Component | AsyncComponent -): HTMLElement +): CustomElementConstructor export default wrap