fix: improve error handling and type safety
- Replaced 'any' types with proper TypeScript types - Improved error handling with instanceof checks - Removed unused imports (calculateExpectedTeamScore) - Updated error messages to be more descriptive - Removed deprecated eslint.config.mjs file
This commit is contained in:
Vendored
+1
-1
@@ -16,7 +16,7 @@ declare module "papaparse" {
|
||||
}
|
||||
}
|
||||
|
||||
export function parse<T = any>(
|
||||
export function parse<T = unknown>(
|
||||
input: string,
|
||||
config?: {
|
||||
header?: boolean
|
||||
|
||||
Reference in New Issue
Block a user