We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df2fa2d commit 592483aCopy full SHA for 592483a
src/util/util.js src/util/util.ts
@@ -1,7 +1,6 @@
1
-/** @module env/util */
2
-import { execaSync } from 'execa';
+import { execaSync, type SyncOptions } from 'execa';
3
4
-const execaOutput = (cmg, args, options) => {
+const execaOutput = (cmg: string, args: string[], options: SyncOptions) => {
5
try {
6
const result = execaSync(cmg, args, options);
7
if (!result.failed) {
0 commit comments