sqlite-executor 4.0.11 → 4.0.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -7,7 +7,7 @@ export const DEFAULT_STATEMENT_TIMEOUT: 30000;
7
7
  *
8
8
  * @param timeout - 超时时间(毫秒)
9
9
  * @param sql - 超时发生时正在执行的 SQL 语句(已规范化)
10
- * @param startTime - 任务开始时的 performance.now() 值(可选);提供后会生成人类可读的时间信息
10
+ * @param startTime - 任务开始时的 Unix 毫秒时间戳或 performance.now() 值(可选)
11
11
  * @returns 包含超时时间、时间信息和 SQL 的 Error 实例
12
12
  */
13
13
  export function createTimeoutError(timeout: number, sql: string, startTime?: number): Error;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sqlite-executor",
3
- "version": "4.0.11",
3
+ "version": "4.0.12",
4
4
  "private": false,
5
5
  "description": "SQLite executor for Node.js",
6
6
  "sideEffects": false,