/**
 * Type for info attached to Occurrence for setting up live-grouper.
 * @author Benedikt Arnarsson
 */
type OccurrenceGrouperInfo = {
  // Flag indicating the the live-grouper algorithm is enabled
  grouperEnabled: true,
  // Series ID, for inheriting groups from previous occurrences
  seriesId: number,
};

export default OccurrenceGrouperInfo;
