We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e76f5e commit 42881f6Copy full SHA for 42881f6
src/index.ts
@@ -46,13 +46,15 @@ export class Client extends EventEmitter {
46
/**
47
* PostgreSQL database url
48
* @type {string}
49
+ * @readonly
50
*/
51
52
readonly dbUrl: string;
53
54
55
* Client options
56
* @type {ClientOptions | undefined}
57
58
59
60
readonly options: ClientOptions | undefined;
@@ -62,7 +64,7 @@ export class Client extends EventEmitter {
62
64
* @type {string | undefined}
63
65
66
- readonly tableName: string | undefined;
67
+ public tableName: string | undefined;
68
69
70
* The `pg` client instance for your database
0 commit comments