()
| 57 | return this.native.valueForAttribute(attribute); |
| 58 | } |
| 59 | getAttributes(): { [key: string]: string } { |
| 60 | return deserialize(this.native.attributes); |
| 61 | } |
| 62 | putAttribute(attribute: string, value: string): void { |
| 63 | this.native.setValueForAttribute(value, attribute); |
| 64 | } |
nothing calls this directly
no test coverage detected