mirror of
https://github.com/status-im/status-lib.git
synced 2025-01-11 21:14:30 +00:00
17 lines
333 B
Nim
17 lines
333 B
Nim
import json
|
|
import json_serialization
|
|
import signal_type
|
|
import ../status
|
|
import ../types/rpc_response
|
|
|
|
import ../../eventemitter
|
|
|
|
export signal_type
|
|
|
|
type Signal* = ref object of Args
|
|
signalType* {.serializedFieldName("type").}: SignalType
|
|
signalTypeStr*: string
|
|
|
|
type NodeSignal* = ref object of Signal
|
|
event*: StatusGoError
|