import { DaffSortDirectionEnum } from '@daffodil/core'
The direction in which to sort a list of elements, e.g. if the list was sorted alphabetically, "Ascending" would be from "A-Z", and "Descending" would be from "Z-A".
enum DaffSortDirectionEnum {
Ascending = DaffSortDirectionEnum.Ascending,
Descending = DaffSortDirectionEnum.Descending,
}