mirror of
https://github.com/haveno-dex/haveno-ts.git
synced 2025-08-09 06:52:58 -04:00
bump version, update docs and dist
This commit is contained in:
parent
f4d1b6a0a2
commit
6640dcb2ee
849 changed files with 8355 additions and 1766 deletions
13
dist/utils/HavenoError.d.ts
vendored
Normal file
13
dist/utils/HavenoError.d.ts
vendored
Normal file
|
@ -0,0 +1,13 @@
|
|||
/**
|
||||
* Haveno error with message and code.
|
||||
*/
|
||||
export default class HavenoError extends Error {
|
||||
code: number | undefined;
|
||||
/**
|
||||
* Create the error with a message and code.
|
||||
*
|
||||
* @param {string} msg - the error message
|
||||
* @param {number} code
|
||||
*/
|
||||
constructor(msg: string, code?: number);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue