import { ValidationError } from './ValidationError';

// TODO: this means that all template projects MUST have this API shape - thoughts?
/** The root result from a typical envoc API call when forms are returned */
export interface ValidatedApiResult {
  validationFailures?: ValidationError[];
  hasErrors?: boolean;
}
