({ command, spinner }: Options)
| 6 | }; |
| 7 | |
| 8 | export async function copyCommand({ command, spinner }: Options) { |
| 9 | // @ts-ignore |
| 10 | const clipboard = await import("node-clipboardy"); |
| 11 | clipboard.default.writeSync(command); |
| 12 | spinner.succeed("Command copied to clipboard."); |
| 13 | } |