mirror of
https://github.com/fluencelabs/js-libp2p-interfaces
synced 2025-04-25 15:52:30 +00:00
16 lines
423 B
TypeScript
16 lines
423 B
TypeScript
|
export class UnexpectedPeerError extends Error {
|
||
|
static get code(): string;
|
||
|
constructor(message?: string);
|
||
|
code: string;
|
||
|
}
|
||
|
export class InvalidCryptoExchangeError extends Error {
|
||
|
static get code(): string;
|
||
|
constructor(message?: string);
|
||
|
code: string;
|
||
|
}
|
||
|
export class InvalidCryptoTransmissionError extends Error {
|
||
|
static get code(): string;
|
||
|
constructor(message?: string);
|
||
|
code: string;
|
||
|
}
|