Interface EventError<E>

An object that contains an error for an event.

interface EventError<E = ErrnoError> {
    error: E;
}

Type Parameters

Properties

Properties

error: E