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 • 468 B
TypeScript
import type { UtilsTaskDefinition } from "../types.js";
export interface GenerateTasksOptions {
/**
* Whether to nest every task under a top-level `utils` task. Used by the
* Hardhat CLI (`hardhat utils constants ...`) but not by the standalone hhu
* binary (`hhu constants ...`).
*/
prefixWithUtils: boolean;
}
export declare function generateTasks(options: GenerateTasksOptions): UtilsTaskDefinition[];
//# sourceMappingURL=index.d.ts.map