@bilig/formula 0.1.9 → 0.1.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/binder-wasm-rules.d.ts +12 -0
- package/dist/binder-wasm-rules.js +1031 -0
- package/dist/binder-wasm-rules.js.map +1 -0
- package/dist/binder.js +2 -505
- package/dist/binder.js.map +1 -1
- package/dist/builtins/placeholder.d.ts +2 -2
- package/package.json +2 -2
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { FormulaNode } from "./ast.js";
|
|
2
|
+
interface WasmSafeBuiltinArgsDeps {
|
|
3
|
+
isWasmSafe: (node: FormulaNode, allowRange?: boolean) => boolean;
|
|
4
|
+
}
|
|
5
|
+
export declare function isCellRangeNode(node: FormulaNode): boolean;
|
|
6
|
+
export declare function getNativeAxisAggregateCode(node: FormulaNode): number | null;
|
|
7
|
+
export declare function getNativeRunningFoldCode(node: FormulaNode): number | null;
|
|
8
|
+
export declare function isNativeMakearraySumLambda(node: FormulaNode): boolean;
|
|
9
|
+
export declare function isCellVectorNode(node: FormulaNode): boolean;
|
|
10
|
+
export declare function isWasmSafeBuiltinArity(callee: string, argc: number): boolean;
|
|
11
|
+
export declare function isWasmSafeBuiltinArgs(callee: string, args: readonly FormulaNode[], deps: WasmSafeBuiltinArgsDeps): boolean;
|
|
12
|
+
export {};
|