9 lines
430 B
TypeScript
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
|