import { n as BaseFlags } from "./misc-B8WNxSke.js"; //#region src/utils/migration.d.ts /** * Command line flags for migration operations. */ declare const MIGRATION_FLAGS: { sql: { type: "boolean"; short: string; default: false; }; apply: { type: "boolean"; short: string; default: false; }; 'skip-types': { type: "boolean"; default: false; }; 'force-drop': { type: "boolean"; short: string; default: false; }; 'force-create': { type: "boolean"; short: string; default: false; }; }; /** * Type definition for migration command flags. */ type MigrationFlags = BaseFlags & Partial>; //#endregion export { MigrationFlags as n, MIGRATION_FLAGS as t };