Comparing version 0.1.7 to 0.1.8
/* | ||
* linsql v0.1.7 | ||
* linsql v0.1.8 | ||
* (c) 2022-2022 xiaoqiujun | ||
@@ -4,0 +4,0 @@ * Released under the MIT License. |
{ | ||
"name": "linsql", | ||
"version": "0.1.7", | ||
"version": "0.1.8", | ||
"description": "使用TS封装node-mysql的常用操作,可链式调用,与ThinkPHP的查询器类似", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -84,3 +84,3 @@ import Builder, { Alias, Field, Insert, JoinType, OrderType, QueryCollection, Table, Update, WhereQuery } from "./Builder"; | ||
*/ | ||
select<T extends Array<T>>(): Promise<T>; | ||
select<T extends object[]>(): Promise<T>; | ||
/** | ||
@@ -87,0 +87,0 @@ * |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
62021