Skip to content

Commit 49aec09

Browse files
committed
export the correct properties on the index
1 parent 7e40c44 commit 49aec09

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@
55
"main": "dist/index.js",
66
"scripts": {
77
"test": "npm test",
8-
"gen-multicall-abi": "abi-types-generator ./src/ABI/multicall-abi.json --output=./src/ABI/types --name=multicall --provider=ethers"
8+
"gen-multicall-abi": "abi-types-generator ./src/ABI/multicall-abi.json --output=./src/ABI/types --name=multicall --provider=ethers",
9+
"prepublishOnly": "tsc",
10+
"publish": "npm publish --access public"
911
},
1012
"author": "joshstevens19@hotmail.co.uk",
1113
"license": "ISC",

src/index.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1-
export { ContractCallContext, ContractCallResults } from './models';
1+
export {
2+
CallReturnContext,
3+
ContractCallContext,
4+
ContractCallResults,
5+
ContractCallReturnContext,
6+
} from './models';
27
export * from './models/multicall-options';
38
export { Multicall } from './multicall';

0 commit comments

Comments
 (0)