Skip to content

Commit

Permalink
chore: update types
Browse files Browse the repository at this point in the history
  • Loading branch information
achingbrain committed Sep 12, 2024
1 parent cf2913c commit 0723edd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/kubo/daemon.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import fs from 'node:fs/promises'
import { logger } from '@libp2p/logger'
import { execa, type ExecaChildProcess } from 'execa'
import { execa, type ResultPromise } from 'execa'
import mergeOptions from 'merge-options'
import pDefer from 'p-defer'
import waitFor from 'p-wait-for'
Expand All @@ -25,7 +25,7 @@ export default class KuboDaemon implements KuboNode {
public options: KuboOptions & Required<Pick<KuboOptions, 'rpc'>>

private readonly disposable: boolean
private subprocess?: ExecaChildProcess
private subprocess?: ResultPromise
private _api?: KuboRPCClient
private readonly repo: string
private readonly stdout: Logger
Expand Down

0 comments on commit 0723edd

Please sign in to comment.