docs(changeset): feat(error-manager): implement centralized error reporting system

This commit is contained in:
2026-02-07 21:11:48 +02:00
parent 7bf94f306a
commit d7b1eb26f3
18 changed files with 806 additions and 187 deletions

View File

@@ -1,3 +1,4 @@
/* eslint-disable @typescript-eslint/no-explicit-any */
import type { FormerAPICallType } from './Former.types';
interface ResolveSpecRequest {
@@ -65,7 +66,7 @@ function FormerResolveSpecAPI(options: {
}
const data = await response.json();
return data as any;
return data as unknown;
};
}