![JAR search and dependency download from the Maven repository](/logo.png)
chrome.omnibox.bindings.SuggestResult.scala Maven / Gradle / Ivy
package chrome.omnibox.bindings
import scala.scalajs.js
@js.native
trait SuggestResult extends js.Object {
val content: String = js.native
val description: String = js.native
}
object SuggestResult {
def apply(content: String, description: String): SuggestResult = {
js.Dynamic
.literal(
content = content,
description = description
)
.asInstanceOf[SuggestResult]
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy