diff options
| author | Richie Foreman <[email protected]> | 2025-08-13 16:17:38 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-08-13 20:17:38 +0000 |
| commit | a90aeb3d8fd05fc6303ce9ef4e957c2e19cbe9c4 (patch) | |
| tree | 78423cea4d8f3a3f44d0e182b46fdf0a4bc45de0 /packages/core/src/tools/glob.ts | |
| parent | 8fae227e8d53b962f8b7db3abff51906fad1d181 (diff) | |
chore(build/compiler): Enable a bunch of strict TS compiler options. (#6138)
Diffstat (limited to 'packages/core/src/tools/glob.ts')
| -rw-r--r-- | packages/core/src/tools/glob.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/core/src/tools/glob.ts b/packages/core/src/tools/glob.ts index 77a7241f..65454232 100644 --- a/packages/core/src/tools/glob.ts +++ b/packages/core/src/tools/glob.ts @@ -281,7 +281,7 @@ export class GlobTool extends BaseDeclarativeTool<GlobToolParams, ToolResult> { /** * Validates the parameters for the tool. */ - validateToolParams(params: GlobToolParams): string | null { + override validateToolParams(params: GlobToolParams): string | null { const errors = SchemaValidator.validate( this.schema.parametersJsonSchema, params, |
