From 7ee893a287c8992196b0b5f51124074fa7c47f4f Mon Sep 17 00:00:00 2001 From: RblSb Date: Fri, 2 Aug 2024 06:25:45 +0300 Subject: Streamable support closes #49 --- src/Types.hx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/Types.hx') diff --git a/src/Types.hx b/src/Types.hx index 27b2cce..a02b4a9 100644 --- a/src/Types.hx +++ b/src/Types.hx @@ -4,16 +4,16 @@ import Client.ClientData; import utils.YoutubeUtils.YouTubeVideoInfo; typedef VideoDataRequest = { - url:String, - atEnd:Bool + final url:String; + final atEnd:Bool; } typedef VideoData = { - duration:Float, - ?title:String, - ?url:String, - ?subs:String, - ?isIframe:Bool + final duration:Float; + var ?title:String; + var ?url:String; + var ?subs:String; + var ?isIframe:Bool; } typedef Config = { -- cgit v1.2.3