Skip to content

Commit

Permalink
Merge pull request #48 from mokeev1995/bugfix/fix-typings
Browse files Browse the repository at this point in the history
fixes typings (possibly closes #9 and closes #40)
  • Loading branch information
epoberezkin committed Mar 30, 2020
2 parents 926d08c + 3c0d14d commit c91f5e7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Expand Up @@ -66,3 +66,5 @@ yarn.lock
# generated files
index.js
react.js

.idea
2 changes: 1 addition & 1 deletion es6/index.d.ts
@@ -1,2 +1,2 @@
const equal: (a: any, b: any) => boolean;
declare const equal: (a: any, b: any) => boolean;
export = equal;
2 changes: 1 addition & 1 deletion es6/react.d.ts
@@ -1,2 +1,2 @@
const equal: (a: any, b: any) => boolean;
declare const equal: (a: any, b: any) => boolean;
export = equal;
2 changes: 1 addition & 1 deletion react.d.ts
@@ -1,2 +1,2 @@
const equal: (a: any, b: any) => boolean;
declare const equal: (a: any, b: any) => boolean;
export = equal;

0 comments on commit c91f5e7

Please sign in to comment.