| id | QueuePosition |
|---|---|
| title | QueuePosition |
type QueuePosition = "front" | "back";Defined in: queuer.ts:193
Position type for addItem and getNextItem operations.
- 'front': Operate on the front of the queue (FIFO)
- 'back': Operate on the back of the queue (LIFO)