UNPKG

adonis-odm

Version:

A comprehensive MongoDB ODM for AdonisJS with Lucid-style API, type-safe relationships, embedded documents, and transaction support

16 lines 486 B
/** * ODM Configuration Helper */ import type { OdmConfig, SeederConfig } from '../types/index.js'; /** * Define ODM configuration */ export declare function defineConfig(config: OdmConfig): OdmConfig; /** * Get seeder configuration with defaults * * @param config - The ODM configuration object * @returns Seeder configuration with defaults applied */ export declare function getSeederConfig(config: OdmConfig): Required<SeederConfig>; //# sourceMappingURL=odm_config.d.ts.map