typechain-target-ethers-v5
Version:
🔌 TypeChain target for ethers-v5
10 lines (9 loc) • 426 B
TypeScript
import { FunctionDeclaration } from 'typechain';
interface GenerateFunctionOptions {
returnResultObject?: boolean;
isStaticCall?: boolean;
overrideOutput?: string;
}
export declare function codegenFunctions(options: GenerateFunctionOptions, fns: FunctionDeclaration[]): string;
export declare function codegenForOverloadedFunctions(options: GenerateFunctionOptions, fns: FunctionDeclaration[]): string;
export {};