mirror of
https://github.com/Mintplex-Labs/nut.js.git
synced 2026-07-24 20:15:27 -04:00
10 lines
219 B
TypeScript
10 lines
219 B
TypeScript
/**
|
|
* {@link WindowApi} provides helper functions to handle windows
|
|
*/
|
|
import { Window } from "./window.class";
|
|
|
|
export interface WindowApi {
|
|
getWindows(): Promise<Window[]>;
|
|
getActiveWindow(): Promise<Window>;
|
|
}
|