@wagmi/cli
Version:
Manage and generate code from Ethereum ABIs
10 lines • 367 B
TypeScript
import { z } from 'zod';
declare const Generate: z.ZodObject<{
config: z.ZodOptional<z.ZodString>;
root: z.ZodOptional<z.ZodString>;
watch: z.ZodOptional<z.ZodBoolean>;
}, z.core.$strip>;
export type Generate = z.infer<typeof Generate>;
export declare function generate(options?: Generate): Promise<void>;
export {};
//# sourceMappingURL=generate.d.ts.map