UNPKG

@atlasrender/render-plugin

Version:

Atlas Render Farm Manager plugin system.

16 lines (15 loc) 367 B
/** * ValidationErrorOptions - interface for ValidationErrorOptions. * @interface * @author Danil Andreev */ export default interface ValidationErrorOptions { /** * isFatal - if true - validation is failed with fatal error. */ isFatal?: boolean; /** * id - custom identifier. Not used in validation. */ id?: string | number; }