UNPKG

todo-usecase

Version:
7 lines 382 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<void, GetAllLabelRepositoryOutput> { execute(): Promise<GetAllLabelRepositoryOutput>; } //# sourceMappingURL=get-all-label.repository.d.ts.map