/*! * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ import { CalcObj, CalcValue, Pending } from "./types"; import { Delayed } from "./core"; export declare type Formula = (context: C, root: CalcObj) => [Pending[], Delayed>]; export declare const compile: (text: string) => Formula | undefined; //# sourceMappingURL=compiler.d.ts.map