Interface ReplicationOptions<Dialect>

Interface for replication Options in the sequelize constructor

interface ReplicationOptions<Dialect> {
    read: readonly RawConnectionOptions<Dialect>[];
    write?: RawConnectionOptions<Dialect>;
}

Type Parameters

Properties

Properties

read: readonly RawConnectionOptions<Dialect>[]