File size: 221 Bytes
246d201
 
 
 
 
 
1
2
3
4
5
6
7
import ActionType from "#/types/action-type";

export function getTerminalCommand(command: string, hidden: boolean = false) {
  const event = { action: ActionType.RUN, args: { command, hidden } };
  return event;
}