Skip to content
function since v0.1

onIgnition

Queues a callback to be called just before ignition finishes. If Oh My Prvd has already started, the callback will be spawned immediately.

function prvd.onIgnition(
  callback: () -> ()
): ()
export const onIgnition: (
  callback: () => void
) => void

Parameters

callback : () -> ()

The callback to be spawned just before ignition finishes.

Learn More