import type { ErrorReport } from "./ErrorReport"; import type { ErrorReportValue } from "./ErrorReportValue"; export type ErrorReportObject = | (Partial<{ [K in keyof T]: ErrorReport; }> & { ""?: ErrorReportValue; }) | ErrorReportValue;