@willwade/aac-processors
    Preparing search index...

    Interface VocabularySourceCounts

    Counts for one vocabulary source.

    interface VocabularySourceCounts {
        byPartOfSpeech: Record<string, number>;
        entries: number;
        uniquePhrases: number;
        uniqueWords: number;
    }
    Index

    Properties

    byPartOfSpeech: Record<string, number>

    Unique entries per part-of-speech tag ('Unknown' when untagged).

    entries: number

    Total entries found in this source (before deduplication).

    uniquePhrases: number

    Unique multi-word phrases after normalisation (e.g. "thank you").

    uniqueWords: number

    Unique single words after normalisation.