1 | export declare const fieldPathToSchemaPath: (fieldPath: string) => string;
|
2 | export declare const schemaPointerToFieldPath: (jsonPointer: string) => string;
|
3 | export declare const fieldPathToSchema: (schema: object, fieldPath: string) => any;
|
4 | export declare function pathToSegments(path: string | string[]): string[];
|
5 | export declare function get(object: any, path: string | string[]): any;
|