diff options
| author | moon jooho <[email protected]> | 2025-07-04 09:13:02 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-07-04 00:13:02 +0000 |
| commit | 8d3fec08e59b100da036b685d20b080203ba3a4c (patch) | |
| tree | fdfb31c69d8cf15a536e650fb0fdd148d14051ae /packages/cli | |
| parent | 654f8aeb614c3e5129f33d93aa9cfa06d347e3a0 (diff) | |
Add and improve JSDoc comments for core tool methods (#3128)
Diffstat (limited to 'packages/cli')
| -rw-r--r-- | packages/cli/src/ui/hooks/useToolScheduler.test.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/cli/src/ui/hooks/useToolScheduler.test.ts b/packages/cli/src/ui/hooks/useToolScheduler.test.ts index 4b88adaa..d448f0e2 100644 --- a/packages/cli/src/ui/hooks/useToolScheduler.test.ts +++ b/packages/cli/src/ui/hooks/useToolScheduler.test.ts @@ -560,8 +560,8 @@ describe('useReactToolScheduler', () => { (mockToolWithLiveOutput.execute as Mock).mockImplementation( async ( - _args: any, - _signal: any, + _args: Record<string, unknown>, + _signal: AbortSignal, updateFn: ((output: string) => void) | undefined, ) => { liveUpdateFn = updateFn; |
