diff options
Diffstat (limited to 'src/Types.hx')
| -rw-r--r-- | src/Types.hx | 14 |
1 files changed, 7 insertions, 7 deletions
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 = { |
