@atlasrender/render-plugin
Version:
Atlas Render Farm Manager plugin system.
14 lines (13 loc) • 408 B
TypeScript
import ValidatorOptions from "./ValidatorOptions";
import { ValidationError } from "../errors";
/**
* ValidatorOptionsExtended - interface for Validator options, extended with nested errors.
* @interface
* @author Danil Andreev
*/
export default interface ValidatorOptionsExtended extends ValidatorOptions {
/**
* nested - nested items errors.
*/
nested?: readonly ValidationError[];
}