UNPKG

todo-usecase

Version:
8 lines 377 B
import type { ITodo } from "todo-entity"; import type { IRepository } from "./repository.js"; export type SaveTodoRepositoryInput = ITodo; export type SaveTodoRepositoryOutput = ITodo; export interface ISaveTodoRepository extends IRepository { saveTodo(input: SaveTodoRepositoryInput): Promise<SaveTodoRepositoryOutput>; } //# sourceMappingURL=save-todo.repository.d.ts.map