(key: string)
| 169 | |
| 170 | get<T>(key: string): T | null; |
| 171 | get(key: string): unknown { |
| 172 | return this.#data.get(key); |
| 173 | } |
| 174 | |
| 175 | getPropDescriptor(propName: string): PropDescriptor { |
| 176 | let propDescriptor = this.#props.get(propName); |
no outgoing calls