(attribute: string)
| 54 | } |
| 55 | |
| 56 | getAttribute(attribute: string): string { |
| 57 | return this.native.valueForAttribute(attribute); |
| 58 | } |
| 59 | getAttributes(): { [key: string]: string } { |
| 60 | return deserialize(this.native.attributes); |
| 61 | } |
nothing calls this directly
no test coverage detected