huridocs/uwazi

View on GitHub
app/shared/types/suggestionStats.ts

Summary

Maintainability
A
0 mins
Test Coverage
export interface SuggestionsStats {
  counts: {
    labeled: number;
    nonLabeledMatching: number;
    nonLabeledNotMatching: number;
    emptyOrObsolete: number;
    all: number;
  };
  accuracy: number;
}