import { LocationPropertyInner } from './location-property-inner'; /** * * @export * @interface ValidationError */ export interface ValidationError { /** * * @type {Array} * @memberof ValidationError */ 'loc': Array; /** * * @type {string} * @memberof ValidationError */ 'msg': string; /** * * @type {string} * @memberof ValidationError */ 'type': string; }