({ width, height })
| 198 | } |
| 199 | |
| 200 | setMaxSize({ width, height }) { |
| 201 | Deno.core.opSync("op_window_set_max_inner_size", [this.#rid, width, height]); |
| 202 | } |
| 203 | |
| 204 | setMaximized(value) { |
| 205 | Deno.core.opSync("op_window_set_maximized", [this.#rid, value]); |
nothing calls this directly
no outgoing calls
no test coverage detected