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