Fixing incorrect function declaration syntax

This commit is contained in:
James O'Cull
2015-11-05 10:18:02 -05:00
parent 0d3e55398e
commit 037b4c0597
+1 -1
View File
@@ -5446,7 +5446,7 @@ declare module "sequelize" {
* @param defineFunction An optional function that provides model definitions. Useful if you do not
* want to use the module root as the define function
*/
import<TInstance, TAttributes>( path : string, defineFunction? : (Sequelize, DataTypes) => Model<TInstance, TAttributes> ) : Model<TInstance, TAttributes>;
import<TInstance, TAttributes>( path : string, defineFunction? : (sequelize: Sequelize, dataTypes: DataTypes) => Model<TInstance, TAttributes> ) : Model<TInstance, TAttributes>;
/**
* Execute a query on the DB, with the posibility to bypass all the sequelize goodness.