We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4de620 commit b8e1e6aCopy full SHA for b8e1e6a
1 file changed
jsonpointer.d.ts
@@ -2,13 +2,13 @@ interface JSONPointer {
2
/**
3
* Looks up a JSON pointer in an object
4
*/
5
- get(object: Object, pointer: string): any;
+ get(object: Object): any;
6
7
8
9
* Set a value for a JSON pointer on object
10
11
- set(object: Object, pointer: string, value: any): void;
+ set(object: Object, value: any): void;
12
}
13
14
@@ -32,4 +32,4 @@ declare namespace JSONPointer {
32
33
34
35
-export = JSONPointer;
+export = JSONPointer;
0 commit comments