6 lines
223 B
TypeScript
6 lines
223 B
TypeScript
import { JsonPointer, JsonPath } from "./types";
|
|
/**
|
|
* From a json-pointer, creates an array of properties, describing a path into
|
|
* json-data
|
|
*/
|
|
export declare function split(pointer: JsonPointer | JsonPath): JsonPath;
|