UNPKG

todo-usecase

Version:
8 lines 387 B
import type { ILabel } from "todo-entity"; import type { IRepository } from "./repository.js"; export type SaveLabelRepositoryInput = ILabel; export type SaveLabelRepositoryOutput = ILabel; export interface ISaveLabelRepository extends IRepository { saveLabel(input: SaveLabelRepositoryInput): Promise<SaveLabelRepositoryOutput>; } //# sourceMappingURL=save-label.repository.d.ts.map