Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 392 Bytes

File metadata and controls

17 lines (12 loc) · 392 Bytes
id QueuePosition
title QueuePosition

Type Alias: 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)