refactor: convert constructor parameter properties for erasableSyntaxOnly compatibility

Signed-off-by: Paul Schultz <pschultz@pobox.com>
This commit is contained in:
Paul Schultz
2025-09-16 12:29:49 -05:00
parent b3a437e15d
commit 05f60e1e0a
167 changed files with 1826 additions and 679 deletions
@@ -59,7 +59,11 @@ export class DatabaseUserSettingsStore implements UserSettingsStore {
return new DatabaseUserSettingsStore(client);
}
private constructor(private readonly db: Knex) {}
private readonly db: Knex;
private constructor(db: Knex) {
this.db = db;
}
async get(options: {
userEntityRef: string;