index.ts 823 B

1234567891011121314151617181920212223242526272829303132
  1. export { FisVisionModule } from './fis-vision.module';
  2. // Domain types
  3. export {
  4. InferenceService,
  5. InferenceFrame,
  6. DetectionResult,
  7. HistoryRecord,
  8. MPOB_CLASSES,
  9. HEALTH_ALERT_CLASSES,
  10. } from './services/inference.service';
  11. export {
  12. RemoteInferenceService,
  13. EdgeResultPayload,
  14. SaveExternalResultResponse,
  15. ImageRecord,
  16. } from './services/remote-inference.service';
  17. // State
  18. export { VisionState, VisionStateModel } from './store/vision.state';
  19. export {
  20. SubmitBatchAnalysis,
  21. ToggleBatchGroup,
  22. LoadGroupImages,
  23. LoadHistory,
  24. DeleteHistoryRecord,
  25. ClearAllHistory,
  26. } from './store/vision.actions';
  27. // Decorators
  28. export { VisionAnalyzerDecorator, EngineMode } from './decorators/vision-analyzer.decorator';
  29. export { VisionHistoryDecorator, BatchGroup } from './decorators/vision-history.decorator';