|
@@ -1,7 +1,6 @@
|
|
|
-// eslint-disable @typescript-eslint/no-explicit-any
|
|
|
+import { SignerWithAddress } from "@nomiclabs/hardhat-ethers/dist/src/signer-with-address";
|
|
|
import { Fixture } from "ethereum-waffle";
|
|
|
|
|
|
-import { Signers } from "./";
|
|
|
import { Greeter } from "../typechain/Greeter";
|
|
|
|
|
|
declare module "mocha" {
|
|
@@ -11,3 +10,7 @@ declare module "mocha" {
|
|
|
signers: Signers;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+export interface Signers {
|
|
|
+ admin: SignerWithAddress;
|
|
|
+}
|