Files
SerpentRace/SerpentRace_Backend/dist/Application/Deck/queries/GetDeckByIdQueryHandler.d.ts
T

9 lines
430 B
TypeScript

import { IDeckRepository } from '../../../Domain/IRepository/IDeckRepository';
import { GetDeckByIdQuery } from './GetDeckByIdQuery';
import { ShortDeckDto } from '../../DTOs/DeckDto';
export declare class GetDeckByIdQueryHandler {
private readonly deckRepo;
constructor(deckRepo: IDeckRepository);
execute(query: GetDeckByIdQuery): Promise<ShortDeckDto | null>;
}
//# sourceMappingURL=GetDeckByIdQueryHandler.d.ts.map