mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-13 05:20:25 +00:00
Merge pull request #28933 from giannafusaro/fluent-ffmpeg-make-stream-argument-to-pipe-command-optional
Fluent-ffmpeg - Make the stream argument for the pipe function optional
This commit is contained in:
Vendored
+1
-1
@@ -292,7 +292,7 @@ declare namespace Ffmpeg {
|
||||
saveToFile(output: string): FfmpegCommand;
|
||||
save(output: string): FfmpegCommand;
|
||||
writeToStream(stream: stream.Writable, options?: { end?: boolean }): stream.Writable;
|
||||
pipe(stream: stream.Writable, options?: { end?: boolean }): stream.Writable;
|
||||
pipe(stream?: stream.Writable, options?: { end?: boolean }): stream.Writable|stream.PassThrough;
|
||||
stream(stream: stream.Writable, options?: { end?: boolean }): stream.Writable;
|
||||
takeScreenshots(config: number | ScreenshotsConfig, folder?: string): FfmpegCommand;
|
||||
thumbnail(config: number | ScreenshotsConfig, folder?: string): FfmpegCommand;
|
||||
|
||||
Reference in New Issue
Block a user