Interface ChannelCloseEvent

The event that is emitted when a channel is closed from the remote side.

interface ChannelCloseEvent {
    code?: number;
    reason: string;
}

Properties

Properties

code?: number
reason: string