From 54614d74f61f375e7be1af99bfea0f207b2a2805 Mon Sep 17 00:00:00 2001 From: Mathias Soeholm Date: Sun, 24 Jan 2021 16:58:55 +0100 Subject: [PATCH] Remove HTMLDocument as valid type for logTestingPlaygroundURL --- types/screen.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/screen.d.ts b/types/screen.d.ts index 4013af4a..d7c53186 100644 --- a/types/screen.d.ts +++ b/types/screen.d.ts @@ -16,7 +16,7 @@ export type Screen = BoundFunctions & { * Convenience function for `Testing Playground` which logs URL that * can be opened in a browser */ - logTestingPlaygroundURL: (element?: Element | HTMLDocument) => void + logTestingPlaygroundURL: (element?: Element) => void } export const screen: Screen