5 lines
182 B
TypeScript
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;
|