UNPKG

todo-usecase

Version:
7 lines 352 B
import type { ILabel } from "todo-entity"; import type { IRepository } from "../../common/repositories/repository.js"; export type GetAllLabelRepositoryOutput = Array<ILabel>; export interface IGetAllLabelRepository extends IRepository { getAllLabels(): Promise<GetAllLabelRepositoryOutput>; } //# sourceMappingURL=get-all-label.repository.d.ts.map