UNPKG

todo-usecase

Version:
7 lines 436 B
import type { IRepository } from "../../common/repositories/repository.js"; export type DeleteLabelRepositoryInput = string; export type DeleteLabelRepositoryOutput = boolean; export interface IDeleteLabelRepository extends IRepository<DeleteLabelRepositoryInput, DeleteLabelRepositoryOutput> { execute(input: DeleteLabelRepositoryInput): Promise<DeleteLabelRepositoryOutput>; } //# sourceMappingURL=delete-label.repository.d.ts.map