pg-mvc-service 2.0.32 → 2.0.34

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pg-mvc-service",
3
- "version": "2.0.32",
3
+ "version": "2.0.34",
4
4
  "description": "",
5
5
  "homepage": "https://github.com/n-daira/npm-pack_mvc-service#readme",
6
6
  "bugs": {
@@ -126,10 +126,7 @@ export class TableModel {
126
126
  get Client(): PoolClient | Pool {
127
127
  return this.client;
128
128
  }
129
- constructor(client: Pool);
130
- constructor(client: Pool, tableAlias: string);
131
- constructor(client: PoolClient);
132
- constructor(client: PoolClient, tableAlias: string);
129
+
133
130
  constructor(client: Pool | PoolClient, tableAlias?: string) {
134
131
  this.client = client;
135
132
  if (tableAlias !== undefined && tableAlias.trim() !== '') {