sendNotification

Export, used to send notification to laptop

Reference

---@class Notification
---@field summary string
---@field detail string

---@param data Notification
function sendNotification(data) end

Usage example

client.lua
  local success, errorMessage = exports.fd_laptop:sendNotification({
      summary = 'Test title',
      detail = 'Testing description for notification'
  })