Skip to content

Commit

Permalink
feat: export all classes
Browse files Browse the repository at this point in the history
update #2
  • Loading branch information
rishiosaur committed Dec 28, 2019
1 parent 75c7314 commit 97d2b8c
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/theta.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
// Import here Polyfills if needed. Recommended core-js (npm i -D core-js)
// import "core-js/fn/array.find"
// ...
export default class DummyClass {}

import Expression from './equations/expression'
import Constant from './symbols/constant'
import Variable from './symbols/variable'
import Term from './symbols/term'
import Operator from './symbols/operator'
import GreekLetter from './symbols/greekLetter'

export { Expression, Constant, GreekLetter, Variable, Term, Operator }

0 comments on commit 97d2b8c

Please sign in to comment.