Flipper/Applications/Custom (UL, RM, XFW)/RogueMaster/Scripts/notify.js

9 lines
180 B
JavaScript
Raw Normal View History

2024-02-28 05:53:59 +00:00
let notify = require("notification");
notify.error();
delay(1000);
notify.success();
delay(1000);
for (let i = 0; i < 10; i++) {
notify.blink("red", "short");
delay(500);
}