Files
simple-mail-cleaner/backend/node_modules/bullmq/dist/esm/interfaces/redis-streams.d.ts
2026-01-22 15:49:12 +01:00

5 lines
182 B
TypeScript

export type StreamName = string;
export type EntryId = string;
export type EntryRaw = [EntryId, string[]];
export type StreamReadRaw = [StreamName, EntryRaw[]][] | null | undefined;