Interface FilterKeyword

Represents a keyword that, if matched, should cause the filter action to be taken.

interface FilterKeyword {
    id: string;
    keyword: string;
    wholeWord: boolean;
}

Properties

Properties

id: string

The ID of the FilterKeyword in the database.

keyword: string

The phrase to be matched against.

wholeWord: boolean

Should the filter consider word boundaries? See implementation guidelines for filters.