Skip to content

Commit

Permalink
fix: can import builder interface
Browse files Browse the repository at this point in the history
  • Loading branch information
hideokamoto committed Sep 30, 2019
1 parent 1e5420b commit 69572af
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,5 @@ globals:
afterAll: false
jasmine: false
rules:
"@typescript-eslint/no-namespace": off
"@typescript-eslint/class-name-casing": off
4 changes: 2 additions & 2 deletions libs/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ export * from './ResponseFactory'

export const ResponseBuilder = ResponseFactory.init()

export interface interfaces {
ResponseBuilder: builderInterface.ResponseBuilder;
export namespace interfaces {
export type ResponseBuilder = builderInterface.ResponseBuilder;
}

export default {
Expand Down

0 comments on commit 69572af

Please sign in to comment.