now it is impossible to pass null in hide fun of dropdown

This commit is contained in:
InsanusMokrassar 2022-04-15 13:20:30 +06:00
parent 4b697938ac
commit ed6582c98d
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ import dev.inmo.jsuikit.utils.*
external interface Dropdown {
fun show()
fun hide(delay: Boolean? = definedExternally)
fun hide(delay: Boolean = definedExternally)
fun hide(delay: Milliseconds)
}