(name: string)
| 72 | } |
| 73 | |
| 74 | getOrCreateNamedWindow(name: string) { |
| 75 | return this.#namedWindows.getOrCreateWindow(name); |
| 76 | } |
| 77 | |
| 78 | showNamedWindow(name: string) { |
| 79 | return this.#namedWindows.showWindow(name); |
nothing calls this directly
no test coverage detected