Skip to content

Commit

Permalink
fix(types): missing snowflake and db2 dialects (#14137)
Browse files Browse the repository at this point in the history
  • Loading branch information
fzn0x authored and Sascha Depold committed Feb 18, 2022
1 parent 664bd12 commit 0326c2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sequelize.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ export interface Config {
};
}

export type Dialect = 'mysql' | 'postgres' | 'sqlite' | 'mariadb' | 'mssql';
export type Dialect = 'mysql' | 'postgres' | 'sqlite' | 'mariadb' | 'mssql' | 'db2' | 'snowflake';

export interface RetryOptions {
match?: (RegExp | string | Function)[];
Expand Down

0 comments on commit 0326c2c

Please sign in to comment.