Fix testdata after changing API of kotlin.browser and kotlin.dom

This commit is contained in:
Alexey Trilis
2020-06-24 01:39:17 +03:00
parent e6edab1c82
commit 593684ecb6
8 changed files with 93 additions and 17 deletions
@@ -1,7 +1,15 @@
@kotlin.Deprecated(message = "This API is moved to another package, use 'kotlinx.browser.document' instead.", replaceWith = kotlin.ReplaceWith(expression = "document", imports = {"kotlinx.browser.document"}))
@kotlin.internal.LowPriorityInOverloadResolution
public external val document: org.w3c.dom.Document { get; }
@kotlin.Deprecated(message = "This API is moved to another package, use 'kotlinx.browser.localStorage' instead.", replaceWith = kotlin.ReplaceWith(expression = "localStorage", imports = {"kotlinx.browser.localStorage"}))
@kotlin.internal.LowPriorityInOverloadResolution
public external val localStorage: org.w3c.dom.Storage { get; }
@kotlin.Deprecated(message = "This API is moved to another package, use 'kotlinx.browser.sessionStorage' instead.", replaceWith = kotlin.ReplaceWith(expression = "sessionStorage", imports = {"kotlinx.browser.sessionStorage"}))
@kotlin.internal.LowPriorityInOverloadResolution
public external val sessionStorage: org.w3c.dom.Storage { get; }
@kotlin.Deprecated(message = "This API is moved to another package, use 'kotlinx.browser.window' instead.", replaceWith = kotlin.ReplaceWith(expression = "window", imports = {"kotlinx.browser.window"}))
@kotlin.internal.LowPriorityInOverloadResolution
public external val window: org.w3c.dom.Window { get; }