hardhat
Version:
Hardhat is an extensible developer tool that helps smart contract developers increase productivity by reliably bringing together the tools they want.
8 lines • 311 B
TypeScript
import type { NewTaskActionFunction } from "../../../types/tasks.js";
interface TelemetryActionArguments {
enable: boolean;
disable: boolean;
}
declare const configureTelemetry: NewTaskActionFunction<TelemetryActionArguments>;
export default configureTelemetry;
//# sourceMappingURL=task-action.d.ts.map