UNPKG

todo-usecase

Version:
7 lines 379 B
import type { inputDto } from "../../common/dtos/inputDto.js"; import type { Interactor } from "../../common/usecases/interactor.js"; import type { EditLabelInput } from "../dtos/edit-label.dto.js"; export interface IEditLabelInteractor extends Interactor<EditLabelInput> { execute(input: inputDto<EditLabelInput>): void; } //# sourceMappingURL=edit-label.interactor.d.ts.map