2018-06-13 15:39:39 -04:00
|
|
|
'use strict';
|
|
|
|
|
2018-06-14 02:25:56 -04:00
|
|
|
import { Contract } from './contract';
|
|
|
|
import { Interface } from './interface';
|
2018-06-13 15:39:39 -04:00
|
|
|
|
|
|
|
export {
|
|
|
|
Contract,
|
|
|
|
Interface
|
|
|
|
}
|
|
|
|
|
2018-06-24 04:03:21 -04:00
|
|
|
export default {
|
|
|
|
Contract,
|
|
|
|
Interface
|
|
|
|
}
|
|
|
|
|