UNPKG
@skybit/hardhat-yul
Version:
latest (4.2.1)
4.2.1
4.2.0
4.1.1
4.1.0
4.0.3
4.0.2
4.0.1
4.0.0
Compile Yul smart contracts in Hardhat
github.com/SKYBITDev3/hardhat-yul
SKYBITDev3/hardhat-yul
@skybit/hardhat-yul
/
src
/
type-extensions.ts
14 lines
(10 loc)
•
244 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import
"hardhat/types/config"
;
import
{
YulConfig
}
from
"./types"
;
declare
module
"hardhat/types/config"
{
interface
HardhatUserConfig
{
yul
?:
Partial
<
YulConfig
>; }
interface
HardhatConfig
{
yul
:
YulConfig
; } }