Skip to content

Commit

Permalink
Correcting error in type definition (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
FTWinston authored and mourner committed Apr 5, 2019
1 parent b023ac5 commit bb565b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ export default class TinyQueue<Item> {
constructor (items? : Item[], compare? : Comparator<Item>);
peek () : Item;
pop () : Item;
push (Item) : void;
push (item: Item) : void;
}

0 comments on commit bb565b3

Please sign in to comment.