Fix linting issues
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/pr/woodpecker Pipeline was successful

This commit is contained in:
Ethan Lane 2024-04-16 19:06:43 +01:00
parent d608e1c752
commit 6c2233790e
2 changed files with 3 additions and 3 deletions

View file

@ -12,10 +12,10 @@ export default class User extends AppBaseEntity {
} }
@Column() @Column()
UserId: string; UserId: string;
@Column() @Column()
Currency: number; Currency: number;
public UpdateCurrency(currency: number) { public UpdateCurrency(currency: number) {
this.Currency = currency; this.Currency = currency;

View file

@ -9,7 +9,7 @@ export class User1713289062969 implements MigrationInterface {
], queryRunner); ], queryRunner);
} }
public async down(queryRunner: QueryRunner): Promise<void> { public async down(): Promise<void> {
} }
} }