Skip to content

Commit

Permalink
docs(sequelize): update constructor define docs (#10675)
Browse files Browse the repository at this point in the history
  • Loading branch information
papb authored and eseliger committed Apr 1, 2019
1 parent 42414f5 commit 4ec86a4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/sequelize.js
Expand Up @@ -62,7 +62,7 @@ class Sequelize {
* @param {Object} [options.dialectOptions] An object of additional options, which are passed directly to the connection library
* @param {string} [options.storage] Only used by sqlite. Defaults to ':memory:'
* @param {string} [options.protocol='tcp'] The protocol of the relational database.
* @param {Object} [options.define={}] Default options for model definitions. See sequelize.define for options
* @param {Object} [options.define={}] Default options for model definitions. See {@link Model.init}.
* @param {Object} [options.query={}] Default options for sequelize.query
* @param {string} [options.schema=null] A schema to use
* @param {Object} [options.set={}] Default options for sequelize.set
Expand Down
2 changes: 1 addition & 1 deletion types/lib/sequelize.d.ts
Expand Up @@ -217,7 +217,7 @@ export interface Options extends Logging {
protocol?: string;

/**
* Default options for model definitions. See sequelize.define for options
* Default options for model definitions. See Model.init.
*/
define?: ModelOptions;

Expand Down

0 comments on commit 4ec86a4

Please sign in to comment.