import type { TaskOverrideActionFunction } from "../../../types/tasks.js"; interface TestActionArguments { testProfile?: string; } /** * The `test` task forwards its arguments to the subtasks that declare them, so * this override only validates the selected profile. It does that here, rather * than leaving it to the Solidity subtask, because the umbrella task builds the * project before running any subtask: an unknown profile would otherwise be * reported after a full compilation. */ declare const validateTestProfile: TaskOverrideActionFunction; export default validateTestProfile; //# sourceMappingURL=test-task-action.d.ts.map