todo-usecase
Version:
UseCase Module for Todo
8 lines • 425 B
TypeScript
import type { ILabel } from "todo-entity";
import type { IRepository } from "../../common/repositories/repository.js";
export type CreateLabelRepositoryInput = ILabel;
export type CreateLabelRepositoryOutput = ILabel;
export interface ICreateLabelRepository extends IRepository {
createLabel(input: CreateLabelRepositoryInput): Promise<CreateLabelRepositoryOutput>;
}
//# sourceMappingURL=create-label.repository.d.ts.map