Skip to content

Commit

Permalink
fix: exports for ES6 modules (#119)
Browse files Browse the repository at this point in the history
Fix errors using the `Plugins` because what you export from the index.js file is not `{ Plugins }` but `{ plugins }`.
  • Loading branch information
inglkruiz committed Mar 20, 2022
1 parent 439a4f3 commit 47149ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as Plugins from "./Plugins";
import * as plugins from "./Plugins";

declare module "cypress-social-logins" {
export {Plugins}
export { plugins };
}

0 comments on commit 47149ed

Please sign in to comment.