/** * Representation of the 'GenericError' schema. */ export type GenericError = { /** * Human-readable error message */ error: string; } & Record; //# sourceMappingURL=generic-error.d.ts.map