(options: Partial<Options<D, EM, Entities>>)
| 565 | * Type helper to make it easier to use `mikro-orm.config.js`. |
| 566 | */ |
| 567 | export function defineConfig< |
| 568 | D extends IDatabaseDriver = IDatabaseDriver, |
| 569 | EM extends EntityManager<D> = EntityManager<D>, |
| 570 | Entities extends readonly (string | EntityClass<AnyEntity> | EntitySchema)[] = ( |
| 571 | | string |
| 572 | | EntityClass<AnyEntity> |
| 573 | | EntitySchema |
| 574 | )[], |
| 575 | >(options: Partial<Options<D, EM, Entities>>): Partial<Options<D, EM, Entities>> { |
| 576 | return options; |
| 577 | } |
| 578 | |
| 579 | /** |
| 580 | * Connection configuration options for database connections. |
no outgoing calls
no test coverage detected