@launchmenu/applet-window-manager
Version:
An applet to manage LMs window
19 lines • 591 B
TypeScript
import { BrowserWindow } from "electron";
export declare type IVisibilityController = {
/**
* Initializes anything required for the visibility functions to work
* @param window The window to be shown
*/
init(window: BrowserWindow): void;
/**
* Shows the given window
* @param window The window to be shown
*/
show(window: BrowserWindow): void;
/**
* Hides the given window
* @param window The window to be shown
*/
hide(window: BrowserWindow): void;
};
//# sourceMappingURL=IVisibilityController.d.ts.map