forked from janl/node-jsonpointer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjsonpointer.d.ts
More file actions
35 lines (25 loc) · 699 Bytes
/
Copy pathjsonpointer.d.ts
File metadata and controls
35 lines (25 loc) · 699 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
interface JSONPointer {
/**
* Looks up a JSON pointer in an object
*/
get(object: Object, pointer: string): any;
/**
* Set a value for a JSON pointer on object
*/
set(object: Object, pointer: string, value: any): void;
}
declare namespace JSONPointer {
/**
* Looks up a JSON pointer in an object
*/
function get(object: Object, pointer: string): any;
/**
* Set a value for a JSON pointer on object
*/
function set(object: Object, pointer: string, value: any): void;
/**
* Builds a JSONPointer instance from a pointer value.
*/
function compile(pointer: string): JSONPointer;
}
export = JSONPointer;