1234567891011121314151617181920212223242526272829303132333435 |
- interface JSONPointer {
-
- get(object: Object): any;
-
- set(object: Object, value: any): void;
- }
- declare namespace JSONPointer {
-
- function get(object: Object, pointer: string): any;
-
- function set(object: Object, pointer: string, value: any): void;
-
- function compile(pointer: string): JSONPointer;
- }
- export = JSONPointer;
|