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/models/nodes/Node.ts
-rw-r--r--
183
1import { NodeType } from "./NodeType";
2
3/**
4 * When we parse F7 code to a tree, all nodes on the tree extend this node.
5 */
6export interface Node extends Object {
7  type: NodeType;
8}