Skip to content

Commit

Permalink
Fixed type
Browse files Browse the repository at this point in the history
  • Loading branch information
szikszail committed Sep 20, 2021
1 parent 32c4bc5 commit 1c4e524
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/ObjectSet.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
interface ObjectSet<T> {
class ObjectSet<T> {
constructor(iterable: Iterable<T>);
public has(needle: T): boolean;
public delete(item: T): boolean;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "object-set-type",
"version": "2.0.2",
"version": "2.0.3",
"description": "A Set implementation which supports Objects.",
"main": "lib/ObjectSet.js",
"types": "lib/ObjectSet.d.ts",
Expand Down

0 comments on commit 1c4e524

Please sign in to comment.