UNPKG
web-auth-library
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
0.4.2
0.4.1
0.4.0
0.3.2
0.3.1
0.3.0
0.2.0
0.1.0
Authentication library for the browser environment using Web Crypto API
web-auth-library
/
dist
/
core
/
error.d.ts
10 lines
(9 loc)
•
267 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
/// <reference types="@cloudflare/workers-types" />
export
declare
class
FetchError
extends
Error
{
readonly
name
:
string
;
readonly
response
:
Response
;
constructor
(
message
:
string
,
options
: { response: Response; cause?:
unknown
; }
); }