From 6a279278a04cc77e70900477a10b052e585fe045 Mon Sep 17 00:00:00 2001 From: Sander Date: Sun, 9 May 2021 07:17:34 +0200 Subject: [PATCH] fix(types): expose RenderOptions (#225) --- 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 10202fd..acefd28 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -41,7 +41,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: