Skip to content

Commit

Permalink
refactor: clearer re-exports
Browse files Browse the repository at this point in the history
  • Loading branch information
star0202 committed Jul 3, 2024
1 parent 33c2ce2 commit 345397f
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
import Comcigan from './client'
import School from './models/School'
export { default } from './client'

export default Comcigan

export { School }
export * from './models/Region'
export * from './models/School'
export * from './models/Timetable'
export { default as Region } from './models/Region'
export { default as School } from './models/School'
export { default as Timetable } from './models/Timetable'
export { Weekday } from './constants'

0 comments on commit 345397f

Please sign in to comment.