UNPKG

@tovarishfin/hardhat-yul

Version:

Hardhat plugin to develop smart contracts in Yul

14 lines (10 loc) 231 B
import "hardhat/types/config"; import { YulConfig } from "./types"; declare module "hardhat/types/config" { interface HardhatUserConfig { yul?: Partial<YulConfig>; } interface HardhatConfig { yul: YulConfig; } }