org.scalajs.nodejs.drama.ActorSystem.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scalajs-npm-drama_sjs0.6_2.11 Show documentation
Show all versions of scalajs-npm-drama_sjs0.6_2.11 Show documentation
npm/drama binding for Scala.js
The newest version!
package org.scalajs.nodejs.drama
import scala.scalajs.js
/**
* Actor System
* @author [email protected]
*/
@js.native
trait ActorSystem extends js.Object {
def actor(factory: js.Any): Actor = js.native
}