(_, key: string)
| 76 | |
| 77 | export const MODELS: Record<string, ModelEntry> = new Proxy({}, { |
| 78 | get(_, key: string) { |
| 79 | if (!_models) _models = _buildModels(); |
| 80 | return _models[key]; |
| 81 | }, |
| 82 | ownKeys() { |
| 83 | if (!_models) _models = _buildModels(); |
| 84 | return Object.keys(_models); |
nothing calls this directly
no test coverage detected