Skip to content

ElectronApp.on('will-finish-launching') method

ElectronApp › on(‘will-finish-launching’)

Unofficial

Registers a listener for the will-finish-launching event.

Emitted when the application has finished basic startup.

Signature:

on(event: "will-finish-launching", listener: (...args: unknown[]) => void): this

Parameters:

ParameterTypeDescription
event"will-finish-launching"The event name.
listener(...args: unknown[]) => voidThe event handler.

Returns: thisThis ElectronApp instance.