(keyName: K)
| 88 | // `EmberObject` and `ProxyMixin` types. Instead, we apply it here, and that |
| 89 | // gives us the desired behavior for this which actually *use* `ObjectProxy`. |
| 90 | get<K extends keyof Content>(keyName: K): Content[K]; |
| 91 | get<K extends keyof this>(keyname: K): this[K]; |
| 92 | get(keyName: string): unknown; |
| 93 |
no outgoing calls
no test coverage detected