Merge pull request #31166 from schultzp2020/constructor-parameters

refactor: convert constructor parameter properties for erasableSyntaxOnly compatibility
This commit is contained in:
Patrik Oldsberg
2025-10-15 18:56:42 +02:00
committed by GitHub
187 changed files with 1893 additions and 728 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;