From eeb8932f8c439ae7519871e9207cbbe7ee90945e Mon Sep 17 00:00:00 2001 From: Adam Thompson Date: Fri, 21 Apr 2023 17:53:06 -0400 Subject: [PATCH] Update react-ssr-prepass.d.ts --- scripts/react-ssr-prepass.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/react-ssr-prepass.d.ts b/scripts/react-ssr-prepass.d.ts index 782aa75..22d4382 100644 --- a/scripts/react-ssr-prepass.d.ts +++ b/scripts/react-ssr-prepass.d.ts @@ -1,6 +1,6 @@ declare module 'react-ssr-prepass' { type Visitor = ( - element: React.ElementType, + element: React.ReactElement, instance?: React.Component ) => void | Promise