229fd73b38
This reverts commit b4c0cab22a.
19 lines
1.7 KiB
Kotlin
19 lines
1.7 KiB
Kotlin
/*∆*/ @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
|
|
/*∆*/ @kotlin.DeprecatedSinceKotlin(errorSince = "1.6", warningSince = "1.4")
|
|
/*∆*/ 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
|
|
/*∆*/ @kotlin.DeprecatedSinceKotlin(errorSince = "1.6", warningSince = "1.4")
|
|
/*∆*/ 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
|
|
/*∆*/ @kotlin.DeprecatedSinceKotlin(errorSince = "1.6", warningSince = "1.4")
|
|
/*∆*/ 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
|
|
/*∆*/ @kotlin.DeprecatedSinceKotlin(errorSince = "1.6", warningSince = "1.4")
|
|
/*∆*/ public external val window: org.w3c.dom.Window { get; } |