Skip to content
This repository has been archived by the owner on Jul 9, 2021. It is now read-only.

Commit

Permalink
fix: dont use enum string as type as typedoc gets confused
Browse files Browse the repository at this point in the history
  • Loading branch information
fragosti committed Oct 17, 2018
1 parent 8ba6534 commit eda0b3e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/types/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -158,12 +158,12 @@ export enum AssetProxyId {
}

export interface ERC20AssetData {
assetProxyId: AssetProxyId.ERC20;
assetProxyId: string;
tokenAddress: string;
}

export interface ERC721AssetData {
assetProxyId: AssetProxyId.ERC721;
assetProxyId: string;
tokenAddress: string;
tokenId: BigNumber;
}
Expand Down

0 comments on commit eda0b3e

Please sign in to comment.