docs: added jsdocs

This commit is contained in:
Richard Moore 2023-06-06 17:56:00 -04:00
parent 3235910f3b
commit 7dcecfa47d

@ -214,6 +214,9 @@ export interface UnsupportedOperationError extends EthersError<"UNSUPPORTED_OPER
* This Error indicates a proplem connecting to a network.
*/
export interface NetworkError extends EthersError<"NETWORK_ERROR"> {
/**
* The network event.
*/
event: string;
}