* Get a specific property of the element. * @param key The key of the property.
(key: TKey)
| 822 | * @param key The key of the property. |
| 823 | */ |
| 824 | public get<TKey extends keyof TProperties>(key: TKey): TProperties[TKey] { |
| 825 | return this[$StoredElement].properties[key as keyof object]; |
| 826 | } |
| 827 | |
| 828 | /** |
| 829 | * Set a property of the element. |
nothing calls this directly
no outgoing calls
no test coverage detected