io.scalajs.npm.angularjs.uibootstrap.ModalInstance.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of angularjs-ui-bootstrap_sjs0.6_2.11 Show documentation
Show all versions of angularjs-ui-bootstrap_sjs0.6_2.11 Show documentation
AngularJS/ui-bootstrap binding for Scala.js
package io.scalajs.npm.angularjs.uibootstrap
import scala.scalajs.js
/**
* AngularJS Modal Instance (\$modalInstance)
* @author [email protected]
*/
@js.native
trait ModalInstance[T] extends js.Object {
def close(): Unit = js.native
def close(result: T): Unit = js.native
def dismiss(reason: js.Any): Unit = js.native
def result: js.Promise[T] = js.native
def opened: js.Promise[js.Any] = js.native
}