From 41b692856a5b5e2778faa08fba29dcdf8b0cc39e Mon Sep 17 00:00:00 2001 From: Lachlan Miller Date: Mon, 6 Feb 2023 11:36:09 +1000 Subject: [PATCH] chore: export types --- npm/react18/src/index.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/npm/react18/src/index.ts b/npm/react18/src/index.ts index 846a6d0941ea..4d5c3f6766df 100644 --- a/npm/react18/src/index.ts +++ b/npm/react18/src/index.ts @@ -8,6 +8,7 @@ import { } from '@cypress/react' import type { MountOptions, + MountReturn, InternalMountOptions, UnmountArgs, } from '@cypress/react' @@ -83,3 +84,8 @@ export function unmount (options: UnmountArgs = { log: true }) { export { getContainerEl, } + +export type { + MountOptions, + MountReturn, +}