UNPKG

alapa

Version:

A cutting-edge web development framework designed to revolutionize the way developers build modern web applications.

40 lines (39 loc) 762 B
/** * MySQL specific connection credential options. * * @see https://github.com/mysqljs/mysql#connection-options */ export interface MysqlConnectionCredentialsOptions { /** * Connection url where perform connection to. */ url?: string; /** * Database host. */ host?: string; /** * Database host port. */ port?: number; /** * Database username. */ username?: string; /** * Database password. */ password?: string; /** * Database name to connect to. */ database?: string; /** * Object with ssl parameters or a string containing name of ssl profile. */ ssl?: any; /** * Database socket path */ socketPath?: string; }