UNPKG

nerdamer-ts

Version:

javascript light-weight symbolic math expression evaluator

9 lines (8 loc) 194 B
export declare class Context<T> { #private; private currentData?; private stack; constructor(initialData?: T); with(data: T, block: (data: T) => void): void; get(): T; }