laravel-jstools
Version:
JS tools for building front-side of Laravel applications
7 lines (6 loc) • 409 B
TypeScript
import { ValidateServiceContract } from '../../ValidateService/contracts/ValidateServiceContract';
import { ValidateErrorListInterface } from '../../ValidateService/interfaces/ValidateErrorListInterface';
import { Form } from '../../../entities/Form/Form';
export interface FormValidateServiceContract extends ValidateServiceContract {
validateForm(form: Form): ValidateErrorListInterface | true;
}