Documentation
    Preparing search index...

    Function createNotifyService

    • Create a stub-level notify service handler.

      Answers the 5 napplet->shell request types from @napplet/nap/notify. Does NOT implement a real backend (no DOM Notification API, no channel registry, no permission prompt). Host apps replace this via runtime.registerService('notify', realHandler) when a real backend is needed.

      Parameters

      Returns ServiceHandler

      A ServiceHandler to register with the runtime under domain notify

      import { createNotifyService } from '@kehto/services';

      const notify = createNotifyService();
      runtime.registerService('notify', notify);