From 997b0cfe4f636658fb3e91eb513b32867b949ef4 Mon Sep 17 00:00:00 2001 From: Dispatch <45262335+DispatchCommit@users.noreply.github.com> Date: Mon, 3 Feb 2020 10:18:07 -0700 Subject: [PATCH] Update Autopad parameters (#42035) --- types/fluent-ffmpeg/index.d.ts | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/types/fluent-ffmpeg/index.d.ts b/types/fluent-ffmpeg/index.d.ts index a377f6d3f6..6aa0643b8b 100644 --- a/types/fluent-ffmpeg/index.d.ts +++ b/types/fluent-ffmpeg/index.d.ts @@ -292,16 +292,16 @@ declare namespace Ffmpeg { setAspectRatio(aspect: string | number): FfmpegCommand; aspect(aspect: string | number): FfmpegCommand; aspectRatio(aspect: string | number): FfmpegCommand; - applyAutopadding(pad: boolean, color: string): FfmpegCommand; - applyAutoPadding(pad: boolean, color: string): FfmpegCommand; - applyAutopad(pad: boolean, color: string): FfmpegCommand; - applyAutoPad(pad: boolean, color: string): FfmpegCommand; - withAutopadding(pad: boolean, color: string): FfmpegCommand; - withAutoPadding(pad: boolean, color: string): FfmpegCommand; - withAutopad(pad: boolean, color: string): FfmpegCommand; - withAutoPad(pad: boolean, color: string): FfmpegCommand; - autoPad(pad: boolean, color: string): FfmpegCommand; - autopad(pad: boolean, color: string): FfmpegCommand; + applyAutopadding(pad?: boolean, color?: string): FfmpegCommand; + applyAutoPadding(pad?: boolean, color?: string): FfmpegCommand; + applyAutopad(pad?: boolean, color?: string): FfmpegCommand; + applyAutoPad(pad?: boolean, color?: string): FfmpegCommand; + withAutopadding(pad?: boolean, color?: string): FfmpegCommand; + withAutoPadding(pad?: boolean, color?: string): FfmpegCommand; + withAutopad(pad?: boolean, color?: string): FfmpegCommand; + withAutoPad(pad?: boolean, color?: string): FfmpegCommand; + autoPad(pad?: boolean, color?: string): FfmpegCommand; + autopad(pad?: boolean, color?: string): FfmpegCommand; // options/output addOutput(target: string | stream.Writable, pipeopts?: { end?: boolean }): FfmpegCommand;