Skip to content

Commit 7f0a159

Browse files
authored
fix(types): declare $ type eхplicitly (#422)
1 parent 50e5f70 commit 7f0a159

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

src/context.ts

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
// limitations under the License.
1414

1515
import { AsyncLocalStorage } from 'node:async_hooks'
16+
import { spawn } from 'node:child_process'
1617

1718
export type Options = {
1819
verbose: boolean | number
@@ -22,6 +23,7 @@ export type Options = {
2223
shell: string
2324
maxBuffer: number
2425
quote: (v: string) => string
26+
spawn: typeof spawn
2527
logOutput?: 'stdout' | 'stderr'
2628
logFormat?: (...msg: any[]) => string | string[]
2729
logPrint?: (data: any, err?: any) => void

src/core.ts

+6-2
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,19 @@ import { inspect, promisify } from 'node:util'
2323
import { spawn } from 'node:child_process'
2424

2525
import { chalk, which } from './goods.js'
26-
import { runInCtx, getCtx, setRootCtx, Context } from './context.js'
26+
import { runInCtx, getCtx, setRootCtx, Context, Options } from './context.js'
2727
import { printCmd, log } from './print.js'
2828
import { quote, substitute } from './guards.js'
2929

3030
import psTreeModule from 'ps-tree'
3131

3232
const psTree = promisify(psTreeModule)
3333

34-
export function $(pieces: TemplateStringsArray, ...args: any[]) {
34+
interface Zx extends Options {
35+
(pieces: TemplateStringsArray, ...args: any[]): ProcessPromise
36+
}
37+
38+
export const $: Zx = function (pieces: TemplateStringsArray, ...args: any[]) {
3539
let resolve, reject
3640
let promise = new ProcessPromise((...args) => ([resolve, reject] = args))
3741

0 commit comments

Comments
 (0)