import { IteratorType } from './IteratorType';

export interface Index {
  EQ: IteratorType;
  REQ: IteratorType;
  GT: IteratorType;
  GE: IteratorType;
  ALL: IteratorType;
  LT: IteratorType;
  LE: IteratorType;
}
