Skip to content
This repository was archived by the owner on Jul 2, 2024. It is now read-only.

Commit 498065a

Browse files
committed
fix type definition
1 parent b5a9ce7 commit 498065a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Parser/Packet/Parser.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ import {Packet} from "../../Data/Packet";
22
import {BitStream} from 'bit-buffer';
33
import {Match} from "../../Data/Match";
44

5-
export type Parser = (stream: BitStream, match?: Match, skip: boolean = false) => Packet;
5+
export type Parser = (stream: BitStream, match?: Match, skip?: boolean) => Packet;
66
export type PacketParserMap = {[id: number]: Parser};

0 commit comments

Comments
 (0)