fixing linter

Signed-off-by: Francisco Javier Arceo <farceo@redhat.com>
This commit is contained in:
Francisco Javier Arceo 2025-08-14 17:09:36 -04:00
parent 2fb07a7034
commit d3097ecc73
20 changed files with 122 additions and 104 deletions

View file

@ -77,7 +77,7 @@ interface ToolResult {
toolName: string;
result: {
__cancelled?: boolean;
[key: string]: any;
[key: string]: unknown;
};
}
@ -101,7 +101,7 @@ interface TextPart {
// For compatibility with AI SDK types, not used
interface SourcePart {
type: "source";
source?: any;
source?: unknown;
}
interface FilePart {