fix some exports not being understood by typescript-rtti

This commit is contained in:
Jos de Jong 2023-02-02 15:05:55 +01:00
parent 35a8c62ff2
commit 1f2a59c802
2 changed files with 3 additions and 9 deletions

View File

@ -1,6 +1,2 @@
import * as Complex from './native.js'
import * as complex from './arithmetic.js'
export { complex }
export {Complex}
export * as Complex from './native.js'
export * as complex from './arithmetic.js'

View File

@ -1,3 +1 @@
import * as numbers from './native.js'
export {numbers}
export * as numbers from './native.js'