Skip to content

Commit

Permalink
fix: remove multiple RawArgs declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
dhruvkelawala committed Oct 31, 2022
1 parent 841dc95 commit b65dc65
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
6 changes: 0 additions & 6 deletions src/types/api/index.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
import { BigNumberish } from '../../utils/number';
import { Signature } from '../lib';

export type RawArgs =
| {
[inputName: string]: string | string[] | { type: 'struct'; [k: string]: BigNumberish };
}
| string[];

export type Calldata = string[];

export type Overrides = {
Expand Down
2 changes: 1 addition & 1 deletion src/types/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export * from './lib';
export * as api from './api';
export { Calldata, Overrides, RawArgs } from './api';
export { Calldata, Overrides } from './api';
export * from './signer';
export * from './contract';
export * from './account';
Expand Down

0 comments on commit b65dc65

Please sign in to comment.