function createFrozenRegistry<TTool>(tools): ToolRegistry<TTool>;function createFrozenRegistry<TTool>(tools): ToolRegistry<TTool>;Defined in: packages/ai/src/tool-registry.ts:119
Create a frozen (immutable) tool registry from a tools array.
This is used internally to wrap static tools arrays for backward compatibility. Add and remove operations are no-ops on frozen registries.
TTool extends AnyTool = AnyTool
TTool[] = []
The static array of tools
ToolRegistry<TTool>
A frozen ToolRegistry