Files
rss-aggregator/node_modules/bullmq/dist/esm/interfaces/redis-streams.d.ts
T

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;