import { InfoWithSource } from "../../types"; export type Meta = { __index: string; __errors?: Error | null; critical_confirm?: { [key: string]: string | number | null; } | null; confirms_student_graduation?: string | number | null; }; export type Error = { [key: string]: InfoWithSource; }; export type Errors = { [id: string]: Error; };