mirror of
https://github.com/xunleii/silverbullet-icalendar.git
synced 2026-05-04 02:34:05 +00:00
15 lines
326 B
TypeScript
15 lines
326 B
TypeScript
import { editor } from "$sb/silverbullet-syscall/mod.ts";
|
|
|
|
const loneRangerQuotes = [
|
|
"Hi-Yo! Silver",
|
|
"Hi-Yo! Silver! Away!",
|
|
"Kemo Sabe",
|
|
"Get-um up, Scout!",
|
|
];
|
|
|
|
export async function helloWorld() {
|
|
await editor.flashNotification(
|
|
loneRangerQuotes[Math.floor(Math.random() * loneRangerQuotes.length)],
|
|
);
|
|
}
|