Server

show

Usage

bridge.notification.show(src, data)
  • src: number

  • data: object

    • title(optional): string

    • message: string

    • duration: number

    • style: string

Example

bridge.notification.show(src, {
    title = "Example Title",
    message = "Example Message",
    duration = 5000,
    style = "info",
})

Last updated