Skip to content

Commit 2a152c1

Browse files
authored
fix: types (#197)
closes #196
1 parent 33dcbc3 commit 2a152c1

File tree

3 files changed

+15
-7
lines changed

3 files changed

+15
-7
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@
123123
"dargs": "~7.0.0",
124124
"debug-logfmt": "~1.2.2",
125125
"is-unix": "~2.0.10",
126-
"tinyspawn": "~1.2.9"
126+
"tinyspawn": "~1.3.1"
127127
},
128128
"devDependencies": {
129129
"@commitlint/cli": "latest",

src/index.d.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
import { ChildProcess, SpawnOptions } from 'child_process';
1+
import { SpawnOptions } from 'child_process';
2+
import { SubprocessPromise } from 'tinyspawn';
23

34
export type Payload = {
45
id: string;
@@ -391,7 +392,7 @@ export type Flags = {
391392
youtubeSkipDashManifest?: boolean
392393
}
393394

394-
export type Exec = (url: string, flags?: Flags, options?: SpawnOptions) => ChildProcess
395+
export type Exec = (url: string, flags?: Flags, options?: SpawnOptions) => SubprocessPromise
395396
export type Create = (binaryPath: string) => { (url: string, flags?: Flags, options?: SpawnOptions): Promise<Payload>; exec: Exec }
396397
export const youtubeDl: ((...args: Parameters<Exec>) => Promise<Payload>) & { exec: Exec, create: Create }
397398

test/index.test-d.ts

+11-4
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,15 @@ await youtubedl('https://www.youtube.com/watch?v=6xKWiCMKKJg', {
1010
addHeader: ['referer:youtube.com', 'user-agent:googlebot']
1111
})
1212

13-
youtubedl.exec('https://www.youtube.com/watch?v=6xKWiCMKKJg')
14-
youtubedl.exec('https://www.youtube.com/watch?v=6xKWiCMKKJg', { dumpSingleJson: true })
15-
youtubedl.exec('https://www.youtube.com/watch?v=6xKWiCMKKJg', { dumpSingleJson: true }, { shell: true, killSignal: 'SIGKILL', timeout: 3000 })
13+
/* exec */
1614

17-
youtubedl.create('mypath')
15+
const promise = youtubedl.exec('https://www.youtube.com/watch?v=6xKWiCMKKJg')
16+
17+
promise.kill()
18+
promise.ref()
19+
promise.unref()
20+
21+
const result = await promise
22+
23+
console.log(result.stdout)
24+
console.log(result.stderr)

0 commit comments

Comments
 (0)