* A canvas with a 2D context that has some extra methods. Returned by `make_canvas`.
| 836 | * A canvas with a 2D context that has some extra methods. Returned by `make_canvas`. |
| 837 | */ |
| 838 | interface PixelCanvas extends HTMLCanvasElement { |
| 839 | ctx: PixelContext; |
| 840 | } |
| 841 | interface PixelContext extends CanvasRenderingContext2D { |
| 842 | disable_image_smoothing(): void; |
| 843 | enable_image_smoothing(): void; |
nothing calls this directly
no outgoing calls
no test coverage detected