Skip to content

Commit

Permalink
Fix lint errors
Browse files Browse the repository at this point in the history
Quick fix, I'm not expert enough in Typescript to make the correct type
annotations
  • Loading branch information
gnarvaja committed Nov 28, 2024
1 parent 09113a6 commit 4ea4dda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/plugin-hardhat/src/utils/options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ export type DeployFactoryOpts = {
/**
* Allows to customize the proxyFactory used instead of the ones defined in utils/factories.ts
*/
proxyFactory?: null | Function;
proxyFactory?: null | (() => Promise<any>);

/**
* Allows to customize the deploy function used instead of utils/deploy.ts:deploy
*/
deployFunction?: null | Function;
deployFunction?: null | (() => Promise<any>);
};

/**
Expand Down

0 comments on commit 4ea4dda

Please sign in to comment.