mirror of
https://github.com/status-im/status-lib.git
synced 2025-01-29 13:45:31 +00:00
15 lines
296 B
Nim
15 lines
296 B
Nim
import json_serialization
|
|
import signal_type
|
|
|
|
import ../../eventemitter
|
|
|
|
export signal_type
|
|
|
|
type Signal* = ref object of Args
|
|
signalType* {.serializedFieldName("type").}: SignalType
|
|
|
|
type StatusGoError* = object
|
|
error*: string
|
|
|
|
type NodeSignal* = ref object of Signal
|
|
event*: StatusGoError |