UNPKG

todo-usecase

Version:
7 lines 395 B
import type { inputDto } from "../../common/dtos/inputDto.js"; import type { Interactor } from "../../common/usecases/interactor.js"; import type { GetTodoByIdInput } from "../dtos/get-todo-by-id.dto.js"; export interface IGetTodoByIdInteractor extends Interactor<GetTodoByIdInput> { execute(input: inputDto<GetTodoByIdInput>): void; } //# sourceMappingURL=get-todo-by-id.interactor.d.ts.map