All Downloads are FREE. Search and download functionalities are using the official Maven repository.

chrome.omnibox.bindings.DefaultSuggestion.scala Maven / Gradle / Ivy

package chrome.omnibox.bindings

import scala.scalajs.js

@js.native
trait DefaultSuggestion extends js.Object {

  val description: String = js.native

}

object DefaultSuggestion {

  def apply(description: String): DefaultSuggestion = {
    js.Dynamic
      .literal(
          description = description
      )
      .asInstanceOf[DefaultSuggestion]
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy