UNPKG

laravel-jstools

Version:

JS tools for building front-side of Laravel applications

8 lines (7 loc) 495 B
import { FormValidateServiceContract } from './contracts/FormValidateServiceContract'; import { ValidateService } from '../ValidateService/ValidateService'; import { ValidateErrorListInterface } from '../ValidateService/interfaces/ValidateErrorListInterface'; import { Form } from '../../entities/Form/Form'; export declare class JQueryFormValidateService extends ValidateService implements FormValidateServiceContract { validateForm(form: Form): ValidateErrorListInterface | true; }