interface ConnectionOptions {
    database?: string;
    dialectOptions?: LegacyDialectOptions;
    host?: string;
    password?: string;
    port?: string | number;
    protocol?: string;
    ssl?: boolean;
    username?: string;
}

Properties

database?: string
dialectOptions?: LegacyDialectOptions
host?: string
password?: string
port?: string | number
protocol?: string
ssl?: boolean
username?: string

Generated using TypeDoc