Defines a filter clause for an individual field.

interface FilterClause {
    field: string;
    match: string;
}

Properties

Properties

field: string

The name of the field to filter by.

match: string

The search text to match against.