(value)
| 202 | } |
| 203 | |
| 204 | setMaximized(value) { |
| 205 | Deno.core.opSync("op_window_set_maximized", [this.#rid, value]); |
| 206 | } |
| 207 | |
| 208 | setMinSize({ width, height }) { |
| 209 | Deno.core.opSync("op_window_set_min_inner_size", [this.#rid, width, height]); |
nothing calls this directly
no outgoing calls
no test coverage detected