import * as _nuxt_schema from '@nuxt/schema'; interface ModuleOptions { /** * Path to the `drizzle.config.ts` file used for auto-detecting migration settings. * * Will auto-detect one of `['drizzle.config.ts', 'drizzle.config.js', 'drizzle.config.json']` * * @default auto-detect */ configPath: string; /** * Path to the directory containing migration files. * * If omitted, will try to read from {@linkcode configPath} `out`. * * @default 'drizzle' */ migrationsPath: string; /** * Name of the table to store migration metadata. * By default, reads from {@linkcode configPath} `migrations.table`. * * @default '__drizzle_migrations' */ migrationsTable: string; /** * Schema to use for the migrations table when supported by the dialect. * By default, reads from {@linkcode configPath} `migrations.schema`. * * @default 'drizzle' */ migrationsSchema: string; /** * Name of the assets path to store migration files * @default 'migrations' */ storageName: string; } declare const _default: _nuxt_schema.NuxtModule; export { _default as default }; export type { ModuleOptions };