UNPKG

zod-dbs-cli

Version:

Opinionated Zod schema generator for databases

8 lines (7 loc) 362 B
import type { ZodDbsCliConfig, ZodDbsCliOptions } from './types.js'; /** * Enables debug mode if the ZOD_DBS_DEBUG env var is set to 'true' or '1', * or if the --debug CLI argument is present. */ export declare const detectDebugMode: () => void; export declare const getConfiguration: ({ appName, overrides, }?: ZodDbsCliOptions) => Promise<ZodDbsCliConfig>;