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 • 363 B
JavaScript
/**
* The different types of task definitions.
*/
export var TaskDefinitionType;
(function (TaskDefinitionType) {
TaskDefinitionType["EMPTY_TASK"] = "EMPTY_TASK";
TaskDefinitionType["NEW_TASK"] = "NEW_TASK";
TaskDefinitionType["TASK_OVERRIDE"] = "TASK_OVERRIDE";
})(TaskDefinitionType || (TaskDefinitionType = {}));
//# sourceMappingURL=tasks.js.map