11 lines
142 B
TypeScript
11 lines
142 B
TypeScript
|
'use strict';
|
||
|
|
||
|
import { Contract } from './contract.js';
|
||
|
import { Interface } from './interface.js';
|
||
|
|
||
|
export {
|
||
|
Contract,
|
||
|
Interface
|
||
|
}
|
||
|
|