UNPKG

@player-ui/player

Version:

15 lines 656 B
import type { Binding } from "@player-ui/types"; import type { ExpressionHandler, ExpressionNode } from "./types"; /** Sets a value to the data-model */ export declare const setDataVal: ExpressionHandler<[Binding, any], any>; /** Fetches a valid from the data-model */ export declare const getDataVal: ExpressionHandler<[Binding], unknown>; /** Deletes a value from the model */ export declare const deleteDataVal: ExpressionHandler<[Binding], void>; /** Conditional expression handler */ export declare const conditional: ExpressionHandler<[ ExpressionNode, ExpressionNode, ExpressionNode? ]>; //# sourceMappingURL=evaluator-functions.d.ts.map