Interface FilterResult

Represents a filter whose keywords matched a given status.

interface FilterResult {
    filter: mastodon.v2.Filter;
    keywordMatches: null | string[];
    statusMatches: null | string[];
}

Properties

The filter that was matched.

keywordMatches: null | string[]

The keyword within the filter that was matched.

statusMatches: null | string[]

The status ID within the filter that was matched.