9 lines
433 B
TypeScript
9 lines
433 B
TypeScript
import { IDeckRepository } from '../../../Domain/IRepository/IDeckRepository';
|
|
import { UpdateDeckCommand } from './UpdateDeckCommand';
|
|
import { ShortDeckDto } from '../../DTOs/DeckDto';
|
|
export declare class UpdateDeckCommandHandler {
|
|
private readonly deckRepo;
|
|
constructor(deckRepo: IDeckRepository);
|
|
execute(cmd: UpdateDeckCommand): Promise<ShortDeckDto | null>;
|
|
}
|
|
//# sourceMappingURL=UpdateDeckCommandHandler.d.ts.map
|