hardhat
Version:
Hardhat is an extensible developer tool that helps smart contract developers increase productivity by reliably bringing together the tools they want.
9 lines • 330 B
TypeScript
import type { CompilerInput, CompilerOutput } from "./compiler-io.js";
export interface Compiler {
readonly version: string;
readonly longVersion: string;
readonly compilerPath: string;
readonly isSolcJs: boolean;
compile(input: CompilerInput): Promise<CompilerOutput>;
}
//# sourceMappingURL=compiler.d.ts.map