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