Skip to content

Commit bb565b3

Browse files
FTWinstonmourner
authored andcommitted
Correcting error in type definition (#15)
1 parent b023ac5 commit bb565b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ export default class TinyQueue<Item> {
77
constructor (items? : Item[], compare? : Comparator<Item>);
88
peek () : Item;
99
pop () : Item;
10-
push (Item) : void;
10+
push (item: Item) : void;
1111
}

0 commit comments

Comments
 (0)