UNPKG

@theia/core

Version:

Theia is a cloud & desktop IDE framework implemented in TypeScript.

25 lines 987 B
import { StopReason } from '../../common/frontend-application-state'; /** @deprecated @since 1.28 import from common/frontend-application-state instead */ export { StopReason }; export declare const RequestTitleBarStyle = "requestTitleBarStyle"; export declare const TitleBarStyleChanged = "titleBarStyleChanged"; export declare const TitleBarStyleAtStartup = "titleBarStyleAtStartup"; export declare const Restart = "restart"; /** * Emitted by main when close requested. */ export declare const CLOSE_REQUESTED_SIGNAL = "close-requested"; /** * Emitted by window when a reload is requested. */ export declare const RELOAD_REQUESTED_SIGNAL = "reload-requested"; /** * Emitted by the window when the application changes state */ export declare const APPLICATION_STATE_CHANGE_SIGNAL = "application-state-changed"; export interface CloseRequestArguments { confirmChannel: string; cancelChannel: string; reason: StopReason; } //# sourceMappingURL=electron-messages.d.ts.map