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