DaffFilterEqualRequest
A request used to modify the applied status of a DaffFilterEqual
.
import { DaffFilterEqualRequest } from '@daffodil/core'
interface DaffFilterEqualRequest {
type: DaffFilterType.Equal
name: string
value: string[]
}
Properties
Name | Type | Description |
---|---|---|
type | DaffFilterType.Equal | The type of filter request. |
name | string | The name of the filter; e.g. color. |
value | string[] | An array of filter options; e.g. green and red. |