()
| 47 | export default class PNG extends Native("xs_PNG_destructor") { |
| 48 | constructor(buffer) { super(); native("xs_PNG_constructor").call(this, buffer); } |
| 49 | read() { return native("xs_PNG_read").call(this); } |
| 50 | |
| 51 | get width() { return native("xs_PNG_get_width").call(this); } |
| 52 | get height() { return native("xs_PNG_get_height").call(this); } |
no outgoing calls
no test coverage detected