nose-pluto/bin/commands.ts
2025-10-07 17:01:38 -07:00

8 lines
249 B
TypeScript

/// <reference lib="dom" />
// Print all the commands.
import { commands } from "@/js/commands"
export default function () {
return { html: "<div>" + Object.keys(commands).map(cmd => `<a href="#help ${cmd}">${cmd}</a>`).join("") + "</div>" }
}