style: appropriately touch quality tools again
All checks were successful
CI / Get Changed Files (pull_request) Successful in 15s
CI / Checkstyle Main (pull_request) Has been skipped
CI / Docker backend validation (pull_request) Has been skipped
CI / eslint (pull_request) Successful in 28s
CI / oxlint (pull_request) Successful in 28s
CI / prettier (pull_request) Successful in 30s
CI / test-build (pull_request) Successful in 50s
CI / Docker frontend validation (pull_request) Successful in 1m9s
All checks were successful
CI / Get Changed Files (pull_request) Successful in 15s
CI / Checkstyle Main (pull_request) Has been skipped
CI / Docker backend validation (pull_request) Has been skipped
CI / eslint (pull_request) Successful in 28s
CI / oxlint (pull_request) Successful in 28s
CI / prettier (pull_request) Successful in 30s
CI / test-build (pull_request) Successful in 50s
CI / Docker frontend validation (pull_request) Successful in 1m9s
This commit is contained in:
parent
54e9ccf426
commit
26a2e0cdbf
1 changed files with 13 additions and 7 deletions
|
@ -1,10 +1,16 @@
|
|||
import {Component, inject, OnInit, signal} from '@angular/core';
|
||||
import {CommonModule} from '@angular/common';
|
||||
import {FormBuilder, FormControl, FormGroup, ReactiveFormsModule, Validators,} from '@angular/forms';
|
||||
import {DiceService} from './dice.service';
|
||||
import {DiceDto, DiceResult} from './dice.model';
|
||||
import {tap} from 'rxjs/operators';
|
||||
import {UserService} from '@service/user.service';
|
||||
import { Component, inject, OnInit, signal } from '@angular/core';
|
||||
import { CommonModule } from '@angular/common';
|
||||
import {
|
||||
FormBuilder,
|
||||
FormControl,
|
||||
FormGroup,
|
||||
ReactiveFormsModule,
|
||||
Validators,
|
||||
} from '@angular/forms';
|
||||
import { DiceService } from './dice.service';
|
||||
import { DiceDto, DiceResult } from './dice.model';
|
||||
import { tap } from 'rxjs/operators';
|
||||
import { UserService } from '@service/user.service';
|
||||
|
||||
type DiceFormGroup = FormGroup<{
|
||||
betAmount: FormControl<number | null>;
|
||||
|
|
Reference in a new issue