@ghom/orm 1.4.0 → 1.4.1

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.
@@ -4,7 +4,7 @@ import { Table } from "./table.js";
4
4
  import { Color } from "chalk";
5
5
  export interface ILogger {
6
6
  log: (...message: string[]) => void;
7
- error: (error: Error | string, ...message: string[]) => void;
7
+ error: (error: Error | string) => void;
8
8
  }
9
9
  export interface ORMConfig {
10
10
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ghom/orm",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "main": "dist/esm/index.js",
package/src/app/orm.ts CHANGED
@@ -13,7 +13,7 @@ const isCJS = pack.type === "commonjs" || pack.type == void 0
13
13
 
14
14
  export interface ILogger {
15
15
  log: (...message: string[]) => void
16
- error: (error: Error | string, ...message: string[]) => void
16
+ error: (error: Error | string) => void
17
17
  }
18
18
 
19
19
  export interface ORMConfig {