From 1b4fe408d5d09284bcc573181d64def526c889a1 Mon Sep 17 00:00:00 2001 From: Matej Kormuth Date: Fri, 15 Sep 2017 15:41:17 +0200 Subject: [PATCH] Correct interface fields in FfprobeData According to original library, the name of property should be streams, not stream. https://github.com/fluent-ffmpeg/node-fluent-ffmpeg/blob/master/lib/ffprobe.js#L17 --- types/fluent-ffmpeg/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/fluent-ffmpeg/index.d.ts b/types/fluent-ffmpeg/index.d.ts index 87bdbfe15c..65bacff53e 100644 --- a/types/fluent-ffmpeg/index.d.ts +++ b/types/fluent-ffmpeg/index.d.ts @@ -90,7 +90,7 @@ declare namespace Ffmpeg { type FormatsCallback = (err: Error, formats: Formats) => void; interface FfprobeData { - stream: any[]; + streams: any[]; format: any; chapters: any[]; }