UNPKG
@swan-io/srp
Version:
latest (0.2.6)
0.2.6
0.2.5
0.2.4
0.2.3
0.2.2
0.2.1
0.2.0
0.1.0
A modern SRP implementation for Node.js (v15+) and web browsers
github.com/swan-io/srp
swan-io/srp
@swan-io/srp
/
dist
/
SRPError.d.ts
7 lines
(6 loc)
•
218 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{
ErrorCode
}
from
"./types"
;
export
declare
class
SRPError
extends
Error
{
responsible
:
"client"
|
"server"
;
code
:
ErrorCode
;
constructor
(
responsible
:
"client"
|
"server"
,
code
:
ErrorCode
); }