Skip to content

Commit

Permalink
fix(types): declare module per entry;
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeed committed Aug 17, 2020
1 parent f8443f5 commit 90f5eb9
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
export function dequal(foo: any, bar: any): boolean;
declare module 'dequal' {
export function dequal(foo: any, bar: any): boolean;
}

declare module 'dequal/lite' {
export function dequal(foo: any, bar: any): boolean;
}

0 comments on commit 90f5eb9

Please sign in to comment.