16 lines
184 B
TypeScript
16 lines
184 B
TypeScript
'use strict';
|
|
|
|
import { Contract } from './contract';
|
|
import { Interface } from './interface';
|
|
|
|
export {
|
|
Contract,
|
|
Interface
|
|
}
|
|
|
|
export default {
|
|
Contract,
|
|
Interface
|
|
}
|
|
|