9 lines
200 B
TypeScript
9 lines
200 B
TypeScript
|
|
import Exports from './Exports'
|
||
|
|
import Imports from './Imports'
|
||
|
|
|
||
|
|
const Actions = {
|
||
|
|
Exports: Object.assign(Exports, Exports),
|
||
|
|
Imports: Object.assign(Imports, Imports),
|
||
|
|
}
|
||
|
|
|
||
|
|
export default Actions
|