@primitivefi/hardhat-dodoc
Version:
Zero-config Hardhat plugin to generate documentation for all your Solidity contracts
28 lines • 795 B
TypeScript
import 'hardhat/types/config';
declare module 'hardhat/types/config' {
interface HardhatUserConfig {
dodoc?: {
include?: string[];
exclude?: string[];
runOnCompile?: boolean;
debugMode?: boolean;
templatePath?: string;
outputDir?: string;
keepFileStructure?: boolean;
freshOutput?: boolean;
};
}
interface HardhatConfig {
dodoc: {
include: string[];
exclude: string[];
runOnCompile: boolean;
debugMode: boolean;
templatePath: string;
outputDir: string;
keepFileStructure: boolean;
freshOutput: boolean;
};
}
}
//# sourceMappingURL=type-extensions.d.ts.map