f7
f7 is a spreadsheet formula execution library
git clone https://git.vogt.world/f7.git
Log | Files | README.md | LICENSE.md
← All files
name: src/main/js/execution/ExecutorFactoryFunction.ts
-rw-r--r--
255
1import { Spreadsheet } from "../spreadsheet/Spreadsheet";
2import { Executor } from "./Executor";
3
4/**
5 * Functional constructor to create a new executor from a spreadsheet.
6 */
7export type ExecutorFactoryFunction = (spreadsheet: Spreadsheet) => Executor;