1import type { Applet } from "../Applet.js"; 2 3export const ExitApplet: Applet = { 4 name: "Exit", 5 runFunc: async () => process.exit(0), 6};