import ActionType from "#/types/action-type"; | |
export function getTerminalCommand(command: string, hidden: boolean = false) { | |
const event = { action: ActionType.RUN, args: { command, hidden } }; | |
return event; | |
} | |
import ActionType from "#/types/action-type"; | |
export function getTerminalCommand(command: string, hidden: boolean = false) { | |
const event = { action: ActionType.RUN, args: { command, hidden } }; | |
return event; | |
} | |