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

    Interface TimelineOptions

    interface TimelineOptions {
        dbPathIncluded?: boolean;
        dictionary?: Set<string>;
        lang?: string;
        langCode?: string;
        minWordsPerMonth?: number;
        months?: number;
        now?: number;
        platform?: string;
        resources?: LanguageResources;
        userLabel?: string;
        windowSize?: number;
    }
    Index

    Properties

    dbPathIncluded?: boolean
    dictionary?: Set<string>

    Optional dictionary Set for the spelling measure.

    lang?: string

    Language code. Default "en". Used for reporting only.

    langCode?: string
    minWordsPerMonth?: number

    Months with fewer than this many words are flagged suppressed. Default 150.

    months?: number

    How many trailing months to analyse. Default 12.

    now?: number

    Epoch ms for "now". Defaults to Date.now(). Mainly for tests.

    platform?: string

    Platform label for the report. Default "Grid3".

    resources?: LanguageResources

    Language-specific resources (closed-class words, inflection classifier).

    userLabel?: string
    windowSize?: number

    Moving-average window. Default 30.