Skip to content

Commit

Permalink
Export type
Browse files Browse the repository at this point in the history
  • Loading branch information
Maaaartin committed Oct 18, 2024
1 parent 35c7bd3 commit 18cdb49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/logcat/parser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export interface IParser {
parse(chunk: Buffer): void;
}

type RawEntry = Record<keyof LogcatEntryV2, Buffer>;
export type RawEntry = Record<keyof LogcatEntryV2, Buffer>;
export class BinaryParser extends EventEmitter implements IParser {
private buffer = Buffer.alloc(0);
private readonly HEADER_SIZE_V1 = 20;
Expand Down

0 comments on commit 18cdb49

Please sign in to comment.