ProzillaOS/src/features/apps/terminal/commands/exit.ts
2024-05-07 21:06:07 +02:00

10 lines
No EOL
204 B
TypeScript

import Command from "../command";
export const exit = new Command()
.setManual({
purpose: "Quit terminal interface"
})
.setExecute(function(args, { exit }) {
exit();
return { blank: true };
});