UNPKG

todo-usecase

Version:
8 lines 438 B
import type { ILabel } from "todo-entity"; import type { IRepository } from "../../common/repositories/repository.js"; export type GetLabelByIdRepositoryInput = string; export type GetLabelByIdRepositoryOutput = ILabel | null; export interface IGetLabelByIdRepository extends IRepository { getLabelById(id: GetLabelByIdRepositoryInput): Promise<GetLabelByIdRepositoryOutput>; } //# sourceMappingURL=get-label-by-id.repository.d.ts.map