import { createConnections } from "typeorm"; export const connections = async (entities: any) => { return await createConnections([{ name: "test", type: "mysql", host: "52.34.226.139", port: 3306, username: "lealadm", password: "leal2015*", database: "leal", synchronize: false, entities: entities }]); }