Reviewed-on: #8 Co-authored-by: Matheus Sampaio Queiroga <srherobrine20@gmail.com> Co-committed-by: Matheus Sampaio Queiroga <srherobrine20@gmail.com>
13 lines
125 B
Go
13 lines
125 B
Go
package napi
|
|
|
|
import (
|
|
"unsafe"
|
|
)
|
|
|
|
type Deferred unsafe.Pointer
|
|
|
|
type Promise struct {
|
|
Deferred Deferred
|
|
Value Value
|
|
}
|