Skip to content

Commit

Permalink
fix(types): missing type for oracle dialect in v6
Browse files Browse the repository at this point in the history
Target patch releases of #14991
  • Loading branch information
fzn0x committed Sep 16, 2022
1 parent c230d80 commit efa9f42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sequelize.d.ts
Expand Up @@ -169,7 +169,7 @@ export interface Config {
};
}

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

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

0 comments on commit efa9f42

Please sign in to comment.