UNPKG

laravel-jstools

Version:

JS tools for building front-side of Laravel applications

7 lines (6 loc) 388 B
import { ValidateErrorListInterface } from '../interfaces/ValidateErrorListInterface'; import { AnyObjInterface } from '../../../interfaces/AnyObjInterface'; import { StringObjInterface } from '../../../interfaces/StringObjInterface'; export interface ValidateServiceContract { validate(data: AnyObjInterface, ruleList: StringObjInterface): ValidateErrorListInterface | true; }