@hardhat-docgen/core
Version:
Generate NatSpec documentation automatically on compilation
26 lines (23 loc) • 466 B
TypeScript
import 'hardhat/types/config';
declare module 'hardhat/types/config' {
interface HardhatUserConfig {
docgen?: {
path?: string,
clear?: boolean,
runOnCompile?: boolean,
only?: string[],
except?: string[],
theme?: string,
}
}
interface HardhatConfig {
docgen: {
path: string,
clear: boolean,
runOnCompile: boolean,
only: string[],
except: string[],
theme?:string,
}
}
}