File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change 11export type JSONPointer = string ;
2+ export type URIFragmentJSONPointer = string ;
3+ export type StringifiedJSONPointer = string ;
24export type ReferenceToken = string ;
35export type EscapedReferenceToken = string ;
46export type UnescapedReferenceToken = string ;
@@ -60,6 +62,19 @@ export type JSONObject = Record<string, any>;
6062
6163export function evaluate ( value : JSONArray | JSONObject , jsonPointer : JSONPointer , options ?: EvaluationOptions ) : unknown ;
6264
65+ /**
66+ * Representing
67+ */
68+ export interface JSONString {
69+ to ( jsonPointer : JSONPointer ) : StringifiedJSONPointer ;
70+ from ( jsonPointer : StringifiedJSONPointer ) : JSONPointer
71+ }
72+
73+ export interface URIFragmentIdentifier {
74+ to ( jsonPointer : JSONPointer ) : URIFragmentJSONPointer ;
75+ from ( jsonPointer : URIFragmentJSONPointer ) : JSONPointer
76+ }
77+
6378/**
6479 * Grammar
6580 */
You can’t perform that action at this time.
0 commit comments