From 179c4cd4daebeac3d551a7ac5c1af7fb9d93d870 Mon Sep 17 00:00:00 2001 From: Jesse Wierzbinski Date: Mon, 13 May 2024 08:39:12 -1000 Subject: [PATCH] fix: :bug: Fix incorrect type for video duration --- docs/structures/content-format.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/structures/content-format.md b/docs/structures/content-format.md index af507d3..baf5ed5 100644 --- a/docs/structures/content-format.md +++ b/docs/structures/content-format.md @@ -17,7 +17,7 @@ interface ContentFormat { fps?: number; // unsigned 64-bit integer width?: number; // unsigned 64-bit integer height?: number; // unsigned 64-bit integer - duration?: number; // unsigned 64-bit integer + duration?: number; // unsigned 64-bit float } } ```