Kotlin Wrappers API Reference
Toggle table of contents
web
Target filter
web
Switch theme
Search in API
Skip to content
Kotlin Wrappers API Reference
kotlin-node
/
node.childProcess
/
PromiseWithChild
Promise
With
Child
sealed
external
interface
PromiseWithChild
<
T
>
:
Promise
<
T
>
(
source
)
Members
Properties
child
Link copied to clipboard
abstract
var
child
:
ChildProcess
Functions
finally
Link copied to clipboard
fun
finally
(
onFinally
:
(
)
->
Unit
)
:
Promise
<
T
>
flat
Then
Link copied to clipboard
override
fun
<
R
>
flatThen
(
onFulfilled
:
(
T
)
->
PromiseResult
<
R
>
)
:
Promise
<
R
>
override
fun
<
R
>
flatThen
(
onFulfilled
:
(
T
)
->
PromiseResult
<
R
>
,
onRejected
:
(
JsErrorLike
?
)
->
PromiseResult
<
R
>
)
:
Promise
<
R
>
then
Link copied to clipboard
override
fun
<
R
>
then
(
onFulfilled
:
(
T
)
->
R
)
:
Promise
<
R
>
override
fun
<
R
>
then
(
onFulfilled
:
(
T
)
->
R
,
onRejected
:
(
JsErrorLike
?
)
->
R
)
:
Promise
<
R
>