UNPKG
json-p3
Version:
latest (2.2.2)
2.2.2
2.2.1
2.2.0
2.1.1
2.1.0
2.0.0
1.3.5
1.3.4
1.3.3
1.3.2
1.3.1
1.3.0
1.2.1
1.2.0
1.1.1
1.1.0
1.0.0
0.3.1
0.3.0
0.2.1
0.2.0
0.1.1
0.1.0
JSONPath, JSON Pointer and JSON Patch
github.com/jg-rp/json-p3
jg-rp/json-p3
json-p3
/
dist
/
patch
/
errors.d.ts
12 lines
(11 loc)
•
300 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
/** * Base class for all JSON Patch errors. */
export
declare
class
JSONPatchError
extends
Error
{
readonly
message
:
string
;
constructor
(
message
:
string
); }
export
declare
class
JSONPatchTestFailure
extends
JSONPatchError
{
readonly
message
:
string
;
constructor
(
message
:
string
); }