Skip to content

Commit

Permalink
Update declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
turansky committed Dec 27, 2024
1 parent ccb6ef4 commit f88db56
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,13 @@
package web.html

import web.dom.Element
import web.popover.PopoverTargetAction

sealed external interface PopoverInvokerElement {
/**
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLButtonElement/popoverTargetAction)
*/
var popoverTargetAction: String
var popoverTargetAction: PopoverTargetAction
get() = definedExternally
set(value) = definedExternally

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
// Automatically generated - do not modify!

package web.popover

import seskar.js.JsValue

sealed external interface PopoverTargetAction {
companion object {
@JsValue("hide")
val hide: PopoverTargetAction

@JsValue("show")
val show: PopoverTargetAction

@JsValue("toggle")
val toggle: PopoverTargetAction
}
}

0 comments on commit f88db56

Please sign in to comment.