/** * {@link WindowApi} provides helper functions to handle windows */ import { Window } from "./window.class"; export interface WindowApi { getWindows(): Promise; getActiveWindow(): Promise; }