16 lines
482 B
TypeScript
16 lines
482 B
TypeScript
import { ExitCode, type Bash } from "../bash";
|
|
import type { CommandArgs, ICommand, Result } from "../static";
|
|
|
|
export const cmd_clear = function(this: Bash, args: CommandArgs): Result {
|
|
let result: Result = { exitCode: ExitCode.ERROR, path: this.getCwd() };
|
|
this.clearTerminal();
|
|
result.exitCode = ExitCode.SUCCESS;
|
|
return result;
|
|
}
|
|
|
|
export const clear: ICommand = {
|
|
method: cmd_clear,
|
|
flags: [] as string[],
|
|
help: 'PATH TO HELP.md',
|
|
root: false
|
|
}; |