# OrderDirection enum · @imqueue/pg-sequelize

Source: https://imqueue.org/api/pg-sequelize/latest/pg-sequelize.orderdirection/
Published: 2026-08-01
Author: @imqueue maintainers (https://github.com/imqueue)
Package: @imqueue/pg-sequelize 4.2.0 — generated reference, not hand-written

The two directions a column can be ordered in.

**Signature:**

```typescript
export declare enum OrderDirection 
```

## Enumeration Members


| Member | Value | Description |
| --- | --- | --- |
| asc | `"ASC"` | Ascending — also what any unrecognised direction becomes. |
| desc | `"DESC"` | Descending. |


## Remarks

The values are the SQL keywords, so they can be handed to Sequelize as they are.

