From 0d4f1e8501966d47b1818fdf3ce926111be55e28 Mon Sep 17 00:00:00 2001 From: "dhaval.panjwani@uipath.com" Date: Tue, 16 Dec 2025 01:11:25 +0530 Subject: [PATCH] Export compile and tokenize in TypeScript definitions --- src/jmespath.d.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/jmespath.d.ts b/src/jmespath.d.ts index 1faf628..8515466 100644 --- a/src/jmespath.d.ts +++ b/src/jmespath.d.ts @@ -14,3 +14,7 @@ export function decorate(fns: Record (jsonDoc: any) => any; + +export function compile(query: string): any; + +export function tokenize(query: string): any;