({ width, height })
| 206 | } |
| 207 | |
| 208 | setMinSize({ width, height }) { |
| 209 | Deno.core.opSync("op_window_set_min_inner_size", [this.#rid, width, height]); |
| 210 | } |
| 211 | |
| 212 | setMinimized(value) { |
| 213 | Deno.core.opSync("op_window_set_minimized", [this.#rid, value]); |
nothing calls this directly
no outgoing calls
no test coverage detected