We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df0a281 commit 54195ecCopy full SHA for 54195ec
packages/utils/src/lib/wal.ts
@@ -43,7 +43,7 @@ export type AppendableSink<T> = Recoverable & {
43
*/
44
export type RecoverResult<T> = {
45
/** Successfully recovered records */
46
- records: (T | InvalidEntry)[];
+ records: (T | InvalidEntry<string>)[];
47
/** Errors encountered during recovery with line numbers and context */
48
errors: { lineNo: number; line: string; error: Error }[];
49
/** Last incomplete line if file was truncated (null if clean) */
0 commit comments