Get started
Accounts
Apps
Users
Relationships
Dialogs (Messages)
Tracks (MuseBase)
Photos
Posts
Comments
Safety
Other
Yurba CDN (cdn.yurba.one)
Yurba Desktop API
Yurba Component Language
createSystemNotification: String name
createSystemNotification {
Method prepare {
icon: Path, // Local path to the image
title: String,
content: String
},
Method show
}
const myNotification = app.createSystemNotification("myNotification")
myNotification.prepare({
icon: "icon.png",
title: "Hello world",
content: "This is my test notification"
})
myNotification.show()