style: run quality tools
All checks were successful
CI / Docker frontend validation (pull_request) Has been skipped
CI / Docker backend validation (pull_request) Has been skipped
CI / Get Changed Files (pull_request) Successful in 8s
CI / Checkstyle Main (pull_request) Has been skipped
CI / oxlint (pull_request) Successful in 25s
CI / eslint (pull_request) Successful in 29s
CI / prettier (pull_request) Successful in 28s
CI / test-build (pull_request) Successful in 37s
All checks were successful
CI / Docker frontend validation (pull_request) Has been skipped
CI / Docker backend validation (pull_request) Has been skipped
CI / Get Changed Files (pull_request) Successful in 8s
CI / Checkstyle Main (pull_request) Has been skipped
CI / oxlint (pull_request) Successful in 25s
CI / eslint (pull_request) Successful in 29s
CI / prettier (pull_request) Successful in 28s
CI / test-build (pull_request) Successful in 37s
This commit is contained in:
parent
34ff29c7ac
commit
f42070cfae
11 changed files with 94 additions and 80 deletions
|
@ -1,11 +1,18 @@
|
|||
import {ChangeDetectionStrategy, Component, inject, OnDestroy, OnInit, signal,} from '@angular/core';
|
||||
import {HttpClient} from '@angular/common/http';
|
||||
import {CommonModule, CurrencyPipe, KeyValuePipe, NgClass} from '@angular/common';
|
||||
import {FormsModule} from '@angular/forms';
|
||||
import {UserService} from '@service/user.service';
|
||||
import {Subscription} from 'rxjs';
|
||||
import {AnimatedNumberComponent} from '@blackjack/components/animated-number/animated-number.component';
|
||||
import {AuthService} from '@service/auth.service';
|
||||
import {
|
||||
ChangeDetectionStrategy,
|
||||
Component,
|
||||
inject,
|
||||
OnDestroy,
|
||||
OnInit,
|
||||
signal,
|
||||
} from '@angular/core';
|
||||
import { HttpClient } from '@angular/common/http';
|
||||
import { CommonModule, CurrencyPipe, KeyValuePipe, NgClass } from '@angular/common';
|
||||
import { FormsModule } from '@angular/forms';
|
||||
import { UserService } from '@service/user.service';
|
||||
import { Subscription } from 'rxjs';
|
||||
import { AnimatedNumberComponent } from '@blackjack/components/animated-number/animated-number.component';
|
||||
import { AuthService } from '@service/auth.service';
|
||||
|
||||
interface SlotResult {
|
||||
status: 'win' | 'lose' | 'blank' | 'start';
|
||||
|
|
Reference in a new issue