messageQueueTypes.ts 310 B

12345678910
  1. // Auto-generated stub — replace with real implementation
  2. export type QueueOperationMessage = {
  3. type: 'queue-operation'
  4. operation: QueueOperation
  5. timestamp: string
  6. sessionId: string
  7. content?: string
  8. [key: string]: unknown
  9. }
  10. export type QueueOperation = 'enqueue' | 'dequeue' | 'remove' | string;