Merge pull request #31166 from schultzp2020/constructor-parameters
refactor: convert constructor parameter properties for erasableSyntaxOnly compatibility
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user