Skip to content

Commit

Permalink
Make imports explicit (Typings limitation)
Browse files Browse the repository at this point in the history
  • Loading branch information
blakeembrey committed May 24, 2016
1 parent 7309b7a commit 9316f6d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import Promise = require('any-promise')

import * as Types from './types'
import * as Formats from './formats'
import * as Parsers from './parsers'
import * as Types from './types/index'
import * as Formats from './formats/index'
import * as Parsers from './parsers/index'

import { MultiError, ValidationError } from './support/error'
import { wrap, ValidationContext } from './support/test'
Expand Down

0 comments on commit 9316f6d

Please sign in to comment.