Files
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;