mirror of
https://github.com/Instadapp/aave-protocol-v2.git
synced 2024-07-29 21:47:30 +00:00
14 lines
292 B
TypeScript
14 lines
292 B
TypeScript
import 'hardhat/types/config';
|
|
import 'hardhat/types/runtime';
|
|
|
|
import { TenderlyConfig } from './types';
|
|
declare module 'hardhat/types/config' {
|
|
export interface HardhatUserConfig {
|
|
tenderly?: TenderlyConfig;
|
|
}
|
|
|
|
export interface HardhatConfig {
|
|
tenderly: TenderlyConfig;
|
|
}
|
|
}
|