feat: add knip configuration file and integrate knip for linting; update package.json and package-lock.json for new dependencies; refactor various interfaces to remove export modifiers; delete unused hover-card component

This commit is contained in:
Roberto Musso
2026-02-28 23:44:10 +01:00
parent cdf9a8bf18
commit ee6467a7ac
12 changed files with 492 additions and 70 deletions

View File

@@ -33,13 +33,13 @@ let currentSender: Electron.WebContents | undefined;
// Types
// ---------------------------------------------------------------------------
export interface OrchestrateInput {
interface OrchestrateInput {
message: string;
context: { type: 'global' | 'project'; projectId?: string; uiContext?: string };
sender?: Electron.WebContents;
}
export interface OrchestrateResult {
interface OrchestrateResult {
response: string;
error?: string;
}