GitHub

DaffFilterRangeRequestOption

import { DaffFilterRangeRequestOption } from '@daffodil/core'

The request option represents the minimum and maximum values that are going to be filtered as defined by a DaffFilterRangeRequestBase.

interface DaffFilterRangeRequestOption<T> {
  min: T
  max: T
}

Properties

min
T

The minimum value of the filter range.

max
T

The maximum value of the filter range.