UNPKG

todo-usecase

Version:
8 lines 425 B
import type { ILabel } from "todo-entity"; import type { IRepository } from "../../common/repositories/repository.js"; export type CreateLabelRepositoryInput = ILabel; export type CreateLabelRepositoryOutput = ILabel; export interface ICreateLabelRepository extends IRepository { createLabel(input: CreateLabelRepositoryInput): Promise<CreateLabelRepositoryOutput>; } //# sourceMappingURL=create-label.repository.d.ts.map