From 3b4a564ba0672c81fab24a43403c852d66c79d7d Mon Sep 17 00:00:00 2001 From: Sander Tegelaar Date: Wed, 5 May 2021 22:10:11 +0200 Subject: [PATCH] fix(types): expose RenderOptions --- 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 db8ece7..5cb74cf 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -42,7 +42,7 @@ interface VueTestingLibraryRenderOptions { container?: Element baseElement?: Element } -type RenderOptions = VueTestingLibraryRenderOptions & VueTestUtilsRenderOptions +export type RenderOptions = VueTestingLibraryRenderOptions & VueTestUtilsRenderOptions export function render( TestComponent: any, // this makes me sad :sob: