/** * Config source: https://git.io/JesV9 * * Feel free to let us know via PR, if you find something broken in this config * file. */ declare const databaseConfig: { connection: string; connections: { sqlite: { client: string; connection: { filename: string; }; useNullAsDefault: boolean; healthCheck: boolean; debug: boolean; }; mysql: { client: string; connection: { host: string; port: number; user: string; password: string; database: string; }; healthCheck: boolean; debug: boolean; }; pg: { client: string; connection: { host: string; port: number; user: string; password: string; database: string; }; healthCheck: boolean; debug: boolean; }; }; orm: {}; }; export default databaseConfig;