Skip to content

Commit

Permalink
style(modules): changed imports for modules
Browse files Browse the repository at this point in the history
  • Loading branch information
Luke Carr committed May 21, 2020
1 parent 47e1aa4 commit 217f66d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/modules/auth/email.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Module from "../";
import Module from "..";

export interface SignUpSettingsResponse {
/**
Expand Down
2 changes: 1 addition & 1 deletion src/modules/auth/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Module from "../";
import Module from "..";
import AuthEmailModule from "./email";
import { Client } from "../../client";

Expand Down
2 changes: 1 addition & 1 deletion src/modules/webservice/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Module from "../";
import Module from "..";

interface WebServiceFunction {
/**
Expand Down

0 comments on commit 217f66d

Please sign in to comment.