masto
    Preparing search index...

    Interface FilterResult

    Represents a filter whose keywords matched a given status.

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

    Properties

    The filter that was matched.

    keywordMatches: string[] | null

    The keyword within the filter that was matched.

    statusMatches: string[] | null

    The status ID within the filter that was matched.