UNPKG

todo-usecase

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