From ba14df2db77cdfb1f29cc972391afc86d80eca9c Mon Sep 17 00:00:00 2001 From: Brian Koehler Date: Sun, 6 Feb 2022 15:11:11 -0500 Subject: [PATCH] fix: Add missing cleanup type (#264) --- types/index.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/types/index.d.ts b/types/index.d.ts index acefd28..02c9369 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -9,6 +9,8 @@ import {OptionsReceived as PrettyFormatOptions} from 'pretty-format' // NOTE: fireEvent is overridden below export * from '@testing-library/dom' +export function cleanup(): void + type Debug = ( baseElement?: Array | DocumentFragment | Element, maxLength?: number,