Skip to content

Commit

Permalink
remove Reflect
Browse files Browse the repository at this point in the history
  • Loading branch information
heifade committed Dec 20, 2017
1 parent 043f300 commit 87af199
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mssql-i",
"version": "2.0.5",
"version": "2.0.6",
"description": "sqlserver interface, base on mssql",
"main": "./es/index.js",
"module": "./es/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/Select.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export class Select {
* </pre>
*/
public static async selects(conn: ConnectionPool, params: SelectParamsModel[]) {
let promises = new Array<Promise<{}[]>>();
let promises = new Array<Promise<any[]>>();

params.map(param => {
promises.push(Select.select(conn, param));
Expand Down
2 changes: 1 addition & 1 deletion src/model/SplitPageResultModel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export class SplitPageResultModel {
*
* @memberof SplitPageResultModel
*/
public list: Array<{}>;
public list: Array<any>;
/**
* 总行数
*
Expand Down

0 comments on commit 87af199

Please sign in to comment.