@nomicfoundation/hardhat-keystore
Version:
A module for managing keystore files that store a map from IDs to encrypted string values.
10 lines • 563 B
TypeScript
import type { KeystoreLoader } from "../types.js";
import type { NewTaskActionFunction } from "hardhat/types/tasks";
interface TaskDeleteArguments {
key: string;
force: boolean;
}
declare const taskDelete: NewTaskActionFunction<TaskDeleteArguments>;
export declare const remove: ({ key, force }: TaskDeleteArguments, keystoreLoader: KeystoreLoader, requestSecretInput: (interruptor: string, inputDescription: string) => Promise<string>, consoleLog?: (text: string) => void) => Promise<void>;
export default taskDelete;
//# sourceMappingURL=delete.d.ts.map