UNPKG

bc-minecraft-bedrock-project

Version:

The typescript library responsible for reading/parsing minecraft bedrock data

26 lines (25 loc) 509 B
import { TextDocument } from "./text-document"; /** */ export type JsonPath = string; /** */ export declare namespace JsonPath { const seperator = "/"; /** * * @param text * @param path */ function resolve(text: string | TextDocument, path: JsonPath): number; /** * * @param path * @returns */ function create(...path: string[]): JsonPath; /** * * @param value * @returns */ function is(value: any): value is JsonPath; }