hardhat
Version:
Hardhat is an extensible developer tool that helps smart contract developers increase productivity by reliably bringing together the tools they want.
11 lines • 369 B
TypeScript
import type { NewTaskActionFunction } from "../../../types/tasks.js";
interface TestActionArguments {
testFiles: string[];
chainType: string;
grep: string | undefined;
noCompile: boolean;
verbosity: number;
}
declare const runAllTests: NewTaskActionFunction<TestActionArguments>;
export default runAllTests;
//# sourceMappingURL=task-action.d.ts.map