UNPKG

todo-usecase

Version:
7 lines 397 B
import type { inputDto } from "../../common/dtos/inputDto.js"; import type { IValidation } from "../../common/validations/validation.js"; import type { CreateLabelInput } from "../dtos/create-label.dto.js"; export interface ICreateLabelValidation extends IValidation<CreateLabelInput> { validate(input: inputDto<CreateLabelInput>): void; } //# sourceMappingURL=create-label.validation.d.ts.map