Skip to content

Commit

Permalink
adjust reexport syntax for new TS version
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicholas Rodrigues Lordello committed May 13, 2020
1 parent e783363 commit 3eb5972
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/contracts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
*/

import { AbiItem } from "web3-utils";
import BatchExchangeArtifact from "../build/contracts/BatchExchange.json";
import BatchExchangeViewerArtifact from "../build/contracts/BatchExchangeViewer.json";

export { BatchExchange } from "../build/types/BatchExchange";
export { BatchExchangeViewer } from "../build/types/BatchExchangeViewer";

export * as BatchExchangeArtifact from "../build/contracts/BatchExchange.json";
export * as BatchExchangeViewerArtifact from "../build/contracts/BatchExchangeViewer.json";
export { BatchExchangeArtifact, BatchExchangeViewerArtifact };

export interface ContractArtifact {
abi: AbiItem[];
Expand Down

0 comments on commit 3eb5972

Please sign in to comment.