zod-to-x
Version:
Multi language types generation from Zod schemas.
10 lines (9 loc) • 387 B
TypeScript
import { IZodToXOpt } from "../../core";
export interface IZod2PyOpt extends Omit<IZodToXOpt, "indent"> {
/**
* By default (false), structure/class property names are converted according to the target
* language's naming conventions. If set to true, the original property names are preserved.
*/
keepKeys?: boolean;
}
export declare const defaultOpts: IZod2PyOpt;