UNPKG

@launchmenu/core

Version:

An environment for visual keyboard controlled applets

15 lines 559 B
import { IApplicationConfig } from "./_types/IApplicationConfig"; /** * Launches the application * @param config Configuration for LM to be used * @returns A function that can be called to show LM */ export declare function launch(config: IApplicationConfig): Promise<{ /** A function to force open the window */ show: () => void; /** A promise that resolves once the window has been opened in some way */ shown: Promise<void>; /** Used to fully exit LM */ exit: () => void; }>; //# sourceMappingURL=launcher.d.ts.map