cloneInto targetScope should be a Window object

This commit is contained in:
hensm
2019-03-12 11:33:51 +00:00
parent 7975cd7c28
commit 00e923c8ce

2
ext/src/global.d.ts vendored
View File

@@ -19,7 +19,7 @@ interface CloneIntoOptions {
declare function cloneInto<T> (
obj: T
, targetScope: any
, targetScope: Window
, options?: CloneIntoOptions): T;