Skip to content

Commit

Permalink
Fixed module import
Browse files Browse the repository at this point in the history
  • Loading branch information
roll committed May 3, 2017
1 parent 189e41c commit 7e52357
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/index.js
@@ -1,9 +1,9 @@
require('babel-polyfill')
const Table = require('./table').Table
const Schema = require('./schema').Schema
const Field = require('./field').Field
const validate = require('./validate').validate
const infer = require('./infer').infer
const Table = require('./table')
const Schema = require('./schema')
const Field = require('./field')
const validate = require('./validate')
const infer = require('./infer')

export default {Table, Schema, Field, validate, infer}
export {Table, Schema, Field, validate, infer}

0 comments on commit 7e52357

Please sign in to comment.