From 00e923c8cefc330396ed71795d55e03ea6f49e85 Mon Sep 17 00:00:00 2001 From: hensm Date: Tue, 12 Mar 2019 11:33:51 +0000 Subject: [PATCH] cloneInto targetScope should be a Window object --- ext/src/global.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/src/global.d.ts b/ext/src/global.d.ts index 48b21c1..6e8535a 100644 --- a/ext/src/global.d.ts +++ b/ext/src/global.d.ts @@ -19,7 +19,7 @@ interface CloneIntoOptions { declare function cloneInto ( obj: T - , targetScope: any + , targetScope: Window , options?: CloneIntoOptions): T;