Client

show

Usage

bridge.notification.show(data)
  • data: object

    • title(optional): string

    • message: string

    • duration: number

    • style: string

Example

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

Last updated