// OEE module — public surface.
//
// Pure calculation + interpretation. No React, no Supabase. Safe to import
// from server, client, and worker contexts.

export {
  calculateAvailabilityFromMtbfMttr,
  calculateOee,
  formatMinutesAsHours,
  formatPercent,
  type OeeInput,
  type OeeResult,
} from './engine'

export {
  generateInterpretation,
  type OeeSnapshot,
  type OeeTargets,
} from './interpretation'
