forked from GitHubMirrors/silverbullet-icalendar
13 lines
340 B
TypeScript
13 lines
340 B
TypeScript
import { flashNotification } from "@silverbulletmd/plugos-silverbullet-syscall/editor";
|
|
|
|
const loneRangerQuotes = [
|
|
"Hi-Yo! Silver",
|
|
"Hi-Yo! Silver! Away!",
|
|
"Kemo Sabe",
|
|
"Get-um up, Scout!",
|
|
];
|
|
|
|
export async function helloWorld() {
|
|
await flashNotification(loneRangerQuotes[Math.floor(Math.random() * loneRangerQuotes.length)]);
|
|
}
|