refactor: eliminate ~400 no-explicit-any warnings across the workspace

Parallel subagent pass: four typescript-pro agents on non-overlapping scopes.

Patterns applied:
- catch (err: any) { ... err.message ... } → catch (err) { ... getErrorMessage(err) ... }
  using the new @fusion/core helper. Bare catch {} where the error was unused.
- SQLite row types: defined typed XxxRow interfaces per table and cast
  .all()/.get() results via `as unknown as XxxRow[]` (the double cast is
  required because better-sqlite3 returns Record<string, SQLOutputValue>).
- rowToX(row: any) converters: typed argument with the matching row interface.
- Dynamic settings key writes: (settings as Record<string, unknown>)[key].
- React event handlers and setState callbacks: inferred types or concrete
  React.{Mouse,Change,Form}Event<...> where needed.
- pi-claude-cli: local PiMessage / PiContext duck types to avoid re-typing
  pi-ai concrete shapes; typed Claude stream event message fields.

72 files changed, ~400 anys eliminated. Typecheck passes across the workspace.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
gsxdsm
2026-04-23 18:57:31 -07:00
parent d1bd02b2c9
commit 4cabe7f613
72 changed files with 1298 additions and 783 deletions

View File

@@ -1,4 +1,5 @@
import { useState, useEffect, useCallback } from "react";
import { getErrorMessage } from "@fusion/core";
import { fetchScripts, addScript, removeScript, type ScriptEntry } from "../api";
import type { ToastType } from "../hooks/useToast";
import {
@@ -55,8 +56,8 @@ export function ScriptsModal({ isOpen, onClose, addToast, projectId, onRunScript
setLoading(true);
const data = await fetchScripts(projectId);
setScripts(data);
} catch (err: any) {
addToast(err.message || "Failed to load scripts", "error");
} catch (err) {
addToast(getErrorMessage(err) || "Failed to load scripts", "error");
} finally {
setLoading(false);
}
@@ -126,11 +127,12 @@ export function ScriptsModal({ isOpen, onClose, addToast, projectId, onRunScript
setForm(EMPTY_FORM);
setNameError(null);
await loadScripts();
} catch (err: any) {
if (err.message?.includes("already exists")) {
} catch (err) {
const msg = getErrorMessage(err);
if (msg?.includes("already exists")) {
addToast("A script with this name already exists", "error");
} else {
addToast(err.message || "Failed to save script", "error");
addToast(msg || "Failed to save script", "error");
}
} finally {
setSaving(false);
@@ -147,8 +149,8 @@ export function ScriptsModal({ isOpen, onClose, addToast, projectId, onRunScript
setForm(EMPTY_FORM);
}
await loadScripts();
} catch (err: any) {
addToast(err.message || "Failed to delete script", "error");
} catch (err) {
addToast(getErrorMessage(err) || "Failed to delete script", "error");
}
}, [isEditing, addToast, loadScripts, projectId]);