(ctx: Context)
| 11 | cache: Record<string, any> = Object.create(null); |
| 12 | |
| 13 | constructor(ctx: Context) { |
| 14 | super(ctx, 'model:system'); |
| 15 | } |
| 16 | |
| 17 | get<K extends keyof SystemKeys>(key: K): SystemKeys[K]; |
| 18 | get(key: string): any; |
nothing calls this directly
no outgoing calls
no test coverage detected