fix api build issues

This commit is contained in:
2025-12-25 13:40:38 +01:00
parent 722a185dd9
commit 3ceb837e15
32 changed files with 150 additions and 133 deletions

View File

@@ -1,9 +1,7 @@
import type { Presenter } from '../../../shared/presentation/Presenter';
import { GetPrizesResultDTO } from '../dtos/GetPrizesDTO';
export interface IGetPrizesPresenter extends Presenter<GetPrizesResultDTO, GetPrizesResultDTO> {}
export class GetPrizesPresenter implements IGetPrizesPresenter {
export class GetPrizesPresenter implements Presenter<GetPrizesResultDTO, GetPrizesResultDTO> {
private result: GetPrizesResultDTO | null = null;
reset() {