Package-level declarations

Types

Link copied to clipboard
external interface JsConstructorFunction<in A : JsTuple, R : Any> : JsClass<R>
Link copied to clipboard
open external class JsContextFunction<in C, in A : JsTuple, out R>(parameterNames: String, body: String)
Link copied to clipboard

Functions

Link copied to clipboard
inline operator fun <R : Any> JsConstructorFunction<JsTuple, R>.invoke(): R
inline operator fun <R> JsFunction<JsTuple, R>.invoke(): R
inline operator fun <P1, R : Any> JsConstructorFunction<JsTuple1<P1>, R>.invoke(p1: P1): R
inline operator fun <P1, R> JsFunction<JsTuple1<P1>, R>.invoke(p1: P1): R
inline operator fun <P1, P2, R : Any> JsConstructorFunction<JsTuple2<P1, P2>, R>.invoke(p1: P1, p2: P2): R
inline operator fun <P1, P2, R> JsFunction<JsTuple2<P1, P2>, R>.invoke(p1: P1, p2: P2): R
inline operator fun <P1, P2, P3, R : Any> JsConstructorFunction<JsTuple3<P1, P2, P3>, R>.invoke(p1: P1, p2: P2, p3: P3): R
inline operator fun <P1, P2, P3, R> JsFunction<JsTuple3<P1, P2, P3>, R>.invoke(p1: P1, p2: P2, p3: P3): R
inline operator fun <P1, P2, P3, P4, R : Any> JsConstructorFunction<JsTuple4<P1, P2, P3, P4>, R>.invoke(p1: P1, p2: P2, p3: P3, p4: P4): R
inline operator fun <P1, P2, P3, P4, R> JsFunction<JsTuple4<P1, P2, P3, P4>, R>.invoke(p1: P1, p2: P2, p3: P3, p4: P4): R
inline operator fun <P1, P2, P3, P4, P5, R : Any> JsConstructorFunction<JsTuple5<P1, P2, P3, P4, P5>, R>.invoke(p1: P1, p2: P2, p3: P3, p4: P4, p5: P5): R
inline operator fun <P1, P2, P3, P4, P5, R> JsFunction<JsTuple5<P1, P2, P3, P4, P5>, R>.invoke(p1: P1, p2: P2, p3: P3, p4: P4, p5: P5): R
inline operator fun <P1, P2, P3, P4, P5, P6, R : Any> JsConstructorFunction<JsTuple6<P1, P2, P3, P4, P5, P6>, R>.invoke(p1: P1, p2: P2, p3: P3, p4: P4, p5: P5, p6: P6): R
inline operator fun <P1, P2, P3, P4, P5, P6, R> JsFunction<JsTuple6<P1, P2, P3, P4, P5, P6>, R>.invoke(p1: P1, p2: P2, p3: P3, p4: P4, p5: P5, p6: P6): R
inline operator fun <P1, P2, P3, P4, P5, P6, P7, R : Any> JsConstructorFunction<JsTuple7<P1, P2, P3, P4, P5, P6, P7>, R>.invoke(p1: P1, p2: P2, p3: P3, p4: P4, p5: P5, p6: P6, p7: P7): R
inline operator fun <P1, P2, P3, P4, P5, P6, P7, R> JsFunction<JsTuple7<P1, P2, P3, P4, P5, P6, P7>, R>.invoke(p1: P1, p2: P2, p3: P3, p4: P4, p5: P5, p6: P6, p7: P7): R
Link copied to clipboard
fun <C, P1, P2, R> JsContextFunction(fn: C.(P1, P2) -> R): JsContextFunction<C, JsTuple2<P1, P2>, R>
fun <C, P1, P2, P3, R> JsContextFunction(fn: C.(P1, P2, P3) -> R): JsContextFunction<C, JsTuple3<P1, P2, P3>, R>
fun <C, P1, P2, P3, P4, R> JsContextFunction(fn: C.(P1, P2, P3, P4) -> R): JsContextFunction<C, JsTuple4<P1, P2, P3, P4>, R>
fun <C, P1, P2, P3, P4, P5, R> JsContextFunction(fn: C.(P1, P2, P3, P4, P5) -> R): JsContextFunction<C, JsTuple5<P1, P2, P3, P4, P5>, R>
fun <C, P1, P2, P3, P4, P5, P6, R> JsContextFunction(fn: C.(P1, P2, P3, P4, P5, P6) -> R): JsContextFunction<C, JsTuple6<P1, P2, P3, P4, P5, P6>, R>
fun <C, P1, P2, P3, P4, P5, P6, P7, R> JsContextFunction(fn: C.(P1, P2, P3, P4, P5, P6, P7) -> R): JsContextFunction<C, JsTuple7<P1, P2, P3, P4, P5, P6, P7>, R>
Link copied to clipboard
inline fun <R> JsFunction(noinline fn: () -> R): JsFunction<JsTuple, R>
inline fun <P1, R> JsFunction(noinline fn: (P1) -> R): JsFunction<JsTuple1<P1>, R>
inline fun <P1, P2, R> JsFunction(noinline fn: (P1, P2) -> R): JsFunction<JsTuple2<P1, P2>, R>
inline fun <P1, P2, P3, R> JsFunction(noinline fn: (P1, P2, P3) -> R): JsFunction<JsTuple3<P1, P2, P3>, R>
inline fun <P1, P2, P3, P4, R> JsFunction(noinline fn: (P1, P2, P3, P4) -> R): JsFunction<JsTuple4<P1, P2, P3, P4>, R>
inline fun <P1, P2, P3, P4, P5, R> JsFunction(noinline fn: (P1, P2, P3, P4, P5) -> R): JsFunction<JsTuple5<P1, P2, P3, P4, P5>, R>
inline fun <P1, P2, P3, P4, P5, P6, R> JsFunction(noinline fn: (P1, P2, P3, P4, P5, P6) -> R): JsFunction<JsTuple6<P1, P2, P3, P4, P5, P6>, R>
inline fun <P1, P2, P3, P4, P5, P6, P7, R> JsFunction(noinline fn: (P1, P2, P3, P4, P5, P6, P7) -> R): JsFunction<JsTuple7<P1, P2, P3, P4, P5, P6, P7>, R>
external fun <R> JsFunction(body: String): JsFunction<JsTuple, R>
external fun <P1, R> JsFunction(p1: String, body: String): JsFunction<JsTuple1<P1>, R>
external fun <P1, P2, R> JsFunction(p1: String, p2: String, body: String): JsFunction<JsTuple2<P1, P2>, R>
external fun <P1, P2, P3, R> JsFunction(p1: String, p2: String, p3: String, body: String): JsFunction<JsTuple3<P1, P2, P3>, R>
external fun <P1, P2, P3, P4, R> JsFunction(p1: String, p2: String, p3: String, p4: String, body: String): JsFunction<JsTuple4<P1, P2, P3, P4>, R>
external fun <P1, P2, P3, P4, P5, R> JsFunction(p1: String, p2: String, p3: String, p4: String, p5: String, body: String): JsFunction<JsTuple5<P1, P2, P3, P4, P5>, R>
external fun <P1, P2, P3, P4, P5, P6, R> JsFunction(p1: String, p2: String, p3: String, p4: String, p5: String, p6: String, body: String): JsFunction<JsTuple6<P1, P2, P3, P4, P5, P6>, R>
external fun <P1, P2, P3, P4, P5, P6, P7, R> JsFunction(p1: String, p2: String, p3: String, p4: String, p5: String, p6: String, p7: String, body: String): JsFunction<JsTuple7<P1, P2, P3, P4, P5, P6, P7>, R>