redis-streams.d.ts 182 B

1234
  1. export type StreamName = string;
  2. export type EntryId = string;
  3. export type EntryRaw = [EntryId, string[]];
  4. export type StreamReadRaw = [StreamName, EntryRaw[]][] | null | undefined;