Spaces:
Build error
Build error
| import { OrderByDirection } from 'twenty-shared/types'; | |
| export const isAscendingOrder = (direction: OrderByDirection): boolean => | |
| direction === OrderByDirection.AscNullsFirst || | |
| direction === OrderByDirection.AscNullsLast; | |