diff --git a/src/logcat/parser.ts b/src/logcat/parser.ts index fe874e2..9f22284 100644 --- a/src/logcat/parser.ts +++ b/src/logcat/parser.ts @@ -6,7 +6,7 @@ export interface IParser { parse(chunk: Buffer): void; } -type RawEntry = Record; +export type RawEntry = Record; export class BinaryParser extends EventEmitter implements IParser { private buffer = Buffer.alloc(0); private readonly HEADER_SIZE_V1 = 20;