todo-usecase
Version:
UseCase Module for Todo
8 lines • 438 B
TypeScript
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<SaveLabelRepositoryInput, SaveLabelRepositoryOutput> {
execute(input: SaveLabelRepositoryInput): Promise<SaveLabelRepositoryOutput>;
}
//# sourceMappingURL=save-label.repository.d.ts.map