mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-23 14:11:18 +00:00
7 lines
184 B
TypeScript
7 lines
184 B
TypeScript
export function createJsonlRequestTailer<T = unknown>(
|
|
filePath: string,
|
|
options?: { historyLimit?: number; maxReadBytes?: number; tailLineLimit?: number },
|
|
): {
|
|
read(): T[];
|
|
};
|