UNPKG

alinea

Version:

[![npm](https://img.shields.io/npm/v/alinea.svg)](https://npmjs.org/package/alinea) [![install size](https://packagephobia.com/badge?p=alinea)](https://packagephobia.com/result?p=alinea)

9 lines (8 loc) 354 B
import { Selection } from './Selection.js'; export interface SelectionVisitor<Produces> { visit?(selection: Selection): Produces; visitCursor?(selection: Selection.Cursor): Produces; visitRecord?(selection: Selection.Record): Produces; visitRow?(selection: Selection.Row): Produces; visitExpr?(selection: Selection.Expr): Produces; }