UNPKG

@comyata/run

Version:

Simplify data workflows and management with data templates, for browser and server.

9 lines (8 loc) 309 B
import jsonata, { Focus } from 'jsonata'; export declare function toExpr(expr: string, functions?: JsonataFn[]): jsonata.Expression; export interface JsonataFn { name: string; fn: (this: Focus, ...args: any[]) => any; signature?: string; } export declare const jsonataExtraFunctions: JsonataFn[];