8 lines
249 B
TypeScript
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>" }
|
|
} |