File tree 2 files changed +11
-6
lines changed
2 files changed +11
-6
lines changed Original file line number Diff line number Diff line change 13
13
// limitations under the License.
14
14
15
15
import assert from 'node:assert'
16
- import { spawn , spawnSync , StdioOptions , IOType } from 'node:child_process'
16
+ import {
17
+ type StdioOptions ,
18
+ type IOType ,
19
+ spawn ,
20
+ spawnSync ,
21
+ } from 'node:child_process'
17
22
import { type Encoding } from 'node:crypto'
18
- import { AsyncHook , AsyncLocalStorage , createHook } from 'node:async_hooks'
19
- import { Readable , Writable } from 'node:stream'
23
+ import { type AsyncHook , AsyncLocalStorage , createHook } from 'node:async_hooks'
24
+ import { type Readable , type Writable } from 'node:stream'
20
25
import { inspect } from 'node:util'
21
26
import { EOL } from 'node:os'
22
27
import {
@@ -31,7 +36,7 @@ import {
31
36
type TSpawnStore ,
32
37
} from './vendor.js'
33
38
import {
34
- Duration ,
39
+ type Duration ,
35
40
errnoMessage ,
36
41
exitCodeInfo ,
37
42
formatCmd ,
Original file line number Diff line number Diff line change @@ -20,8 +20,8 @@ import {
20
20
chalk ,
21
21
minimist ,
22
22
nodeFetch ,
23
- RequestInfo ,
24
- RequestInit ,
23
+ type RequestInfo ,
24
+ type RequestInit ,
25
25
} from './vendor.js'
26
26
27
27
export { default as path } from 'node:path'
You can’t perform that action at this time.
0 commit comments