todo-usecase
Version:
UseCase Module for Todo
7 lines • 469 B
TypeScript
import type { IRepository } from "../../common/repositories/repository.js";
export type CheckLabelExistRepositoryInput = string;
export type CheckLabelExistRepositoryOutput = boolean;
export interface ICheckLabelExistRepository extends IRepository<CheckLabelExistRepositoryInput, CheckLabelExistRepositoryOutput> {
execute(input: CheckLabelExistRepositoryInput): Promise<CheckLabelExistRepositoryOutput>;
}
//# sourceMappingURL=check-label-exist.repository.d.ts.map