mirror of
https://github.com/fluencelabs/js-libp2p-interfaces
synced 2025-06-13 19:01:29 +00:00
chore: add type generation from jsdoc (#64)
This commit is contained in:
15
src/crypto/errors.d.ts
vendored
Normal file
15
src/crypto/errors.d.ts
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
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;
|
||||
}
|
Reference in New Issue
Block a user