UNPKG

zod-to-x

Version:

Multi language types generation from Zod schemas.

21 lines (20 loc) 475 B
/** * @description C++ standard library imports * @param useBoost Whether to use Boost libraries (C++11) or standard C++ libraries (>=C++17) * @returns */ export declare function getLibs(useBoost: boolean): { exceptions: string; integers: string; map: string; nlohmann: string; set: string; string: string; tuple: string; vector: string; optional: string; variant: string; }; export declare const USING: { nlohmann: string; };