pg-mvc-service 2.0.32 → 2.0.33
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 +1 -1
- package/src/models/TableModel.ts +1 -4
package/package.json
CHANGED
package/src/models/TableModel.ts
CHANGED
|
@@ -126,10 +126,7 @@ export class TableModel {
|
|
|
126
126
|
get Client(): PoolClient | Pool {
|
|
127
127
|
return this.client;
|
|
128
128
|
}
|
|
129
|
-
|
|
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() !== '') {
|